Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2.  
  3. Exercice 1
  4. 2)
  5. c) grep Paris ratp.csv | grep 13$
  6. d) grep ";13;" ratp.csv
  7. e) grep [sS]ceaux ratp.csv
  8.  
  9. Exercice 2
  10. 1)
  11. b) cut --delimiter=";" -f9 ratp.csv | sort
  12. c) cut -d ";" -f9 ratp.csv | sort | uniq | tr a-z A-Z
  13. e) cut -d ";" -f9 ratp.csv | sort -r | uniq -c | sort -r
  14. f) cut -d ";" -f9-10 ratp.csv | sort -r | uniq -c | sort -r
  15.  
  16. 2)
  17. a)cut -d ";" -f2 ratp.csv | sort -r | uniq -c | sort -r
  18. b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement