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.

ex3.sh 162 B

1234567891011121314151617
  1. #!/bin/sh
  2. date
  3. sleep 3
  4. mkdir root
  5. date
  6. sleep 3
  7. mkdir home
  8. date
  9. sleep 3
  10. ls -tr / > ./root/root.txt
  11. date
  12. sleep 3
  13. ls -tr ~ > ./home/home.txt
  14. ls
  15. ls ./root
  16. ls ./home