#
# Remove duplicate lines
#
awk ‘!x[$0]++’ FileWithDuplicates.csv > NewFile.csv
#
# Look for a string on files – recursive mode
#
grep -nir –color ‘text to find’ *
#
# Remove duplicate lines
#
awk ‘!x[$0]++’ FileWithDuplicates.csv > NewFile.csv
#
# Look for a string on files – recursive mode
#
grep -nir –color ‘text to find’ *
© 2010 unexpected[it]. All Rights Reserved.