Search Results

Search: Posts Made By: Aia
905
Posted By Aia
grep -v '\$' demo.txt sed '/\$/d' demo.txt...
grep -v '\$' demo.txt

sed '/\$/d' demo.txt

awk '!/\$/' demo.txt

ruby -ne 'print unless /\$/' demo.txt
ruby -pe 'next if /\$/' demo.txt
Showing results 1 to 1 of 1

 
All times are GMT -4. The time now is 09:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy