1
0

answers.txt 616 B

123456789101112131415
  1. a) date prints the number of seconds since UNIX epoch
  2. b) who shows which users are logged in
  3. c) whoami shows the current user
  4. d) who am i does nothing
  5. e) pwd prints the current directory
  6. f) cd changes the working directory
  7. g) mkdir creates a new directory
  8. h) rmdir removes a directory
  9. i) rm removes a file or a directory and its contents with the -r flag
  10. j) cp copies a file
  11. k) mv moves a file
  12. l) ls lists the files in a directory (with permissions)
  13. m) cat concatenates a file or stream
  14. n) more outputs a file to the terminal with the option to scroll
  15. o) less does the same as more but starts at the end of the file