cut -d: -f2-4,7 --complement </etc/passwd # Cut the complement of columns 2-4,7. So in other words, gives you 1,5-6,8-
Friday, November 22, 2013
Linux tips | cut complement
Monday, November 18, 2013
Thursday, November 14, 2013
Wednesday, October 23, 2013
Sunday, October 20, 2013
Turn everything that is not a sequence of numbers, into a comma.
echo abc1defg23hi456 | sed -r 's/[^0-9]+/,/g' #
Subscribe to:
Posts (Atom)