You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

11 lines
250 B

#1
sort -d file.txt | uniq
sort -n file.txt | uniq
sort -d file.txt | uniq > d.txt
sort -n file.txt | uniq > n.txt
sort -d file.txt | uniq >> d.txt
sort -n file.txt | uniq >> n.txt
#2
grep Maycomb test.txt
grep -o Maycomb test.txt | grep -c Maycomb