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