sebastiancarlos@lemmy.sdf.org to Linux@lemmy.ml · edit-21 year agocat vs sed vs awklemmy.sdf.orgimagemessage-square16fedilinkarrow-up128arrow-down10
arrow-up128arrow-down1imagecat vs sed vs awklemmy.sdf.orgsebastiancarlos@lemmy.sdf.org to Linux@lemmy.ml · edit-21 year agomessage-square16fedilink
minus-squarefox@vlemmy.netlinkfedilinkEnglisharrow-up5·edit-21 year 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