Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #!/bin/bash
  2. mkdir folder_2
  3. mkdir folder_1
  4. cd folder_2
  5. touch a.out
  6. touch b.exe
  7. touch c.html
  8. touch d.xhtml
  9. touch e.htm
  10. touch html.xml
  11. touch f.htmlhtm
  12. cd folder_1
  13. touch a1b
  14. touch a2b
  15. touch a3b
  16. touch .a4b
  17. ln -s "folder_2" "/home/student/folder_2/b.exe"
  18. chmod 333 a1b
  19. chmod 125 .a4b
  20. chmod 267 b.exe
  21. chmod 022 c.html
  22. chmod 420 html.xml
  23.  
  24. chmod u+x a1b
  25. chmod g+r .a4b
  26. chmod r html.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement