Comment on Useful Unix commands for data scienceparentComments−ibotty13yawk '{print $3}'is the same ascut -f3 -d' 'cut is amazing for what it does. and most people know only the subset of awk that effectively _is_ cut anyway :D.−toupeira13yNot exactly, awk will consume all whitespace while cut will split on each individual space character, and not on newlines and tabs.
Comments
is the same as
cut is amazing for what it does. and most people know only the subset of awk that effectively _is_ cut anyway :D.
Not exactly, awk will consume all whitespace while cut will split on each individual space character, and not on newlines and tabs.