@[email protected] to [email protected] • edit-22 years agocat vs sed vs awklemmy.sdf.orgimagemessage-square21fedilinkarrow-up177arrow-down12
arrow-up175arrow-down1imagecat vs sed vs awklemmy.sdf.org@[email protected] to [email protected] • edit-22 years agomessage-square21fedilink
minus-square@[email protected]linkfedilinkEnglish6•edit-22 years agolove cat -n, when working with csv files I often use a command like this to figure out which column I need: head -n1 file.csv | sed 's/,/\n/g' | cat -n
love
cat -n
, when working with csv files I often use a command like this to figure out which column I need:head -n1 file.csv | sed 's/,/\n/g' | cat -n
Sweet