sebastiancarlos@lemmy.sdf.org to Linux@lemmy.ml · edit-22 years agocat vs sed vs awklemmy.sdf.orgimagemessage-square19fedilinkarrow-up140arrow-down10
arrow-up140arrow-down1imagecat vs sed vs awklemmy.sdf.orgsebastiancarlos@lemmy.sdf.org to Linux@lemmy.ml · edit-22 years agomessage-square19fedilink
minus-squarefox@vlemmy.netlinkfedilinkEnglisharrow-up4·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