Skip to content

Projects#

Note

Work in progress.

I want you to experiment with a few ideas here.

  1. Use nano to create a new script file - it can be called anything you like
  2. Make sure it has a bang line on the first line (and nothing else): #!/bin/bash
  3. Use some of the commands you've learned so far to:
  4. Create a directory (mkdir)
  5. Create a file (touch)
  6. Change permissions on files (chmod)
  7. Set the x permission on the script
  8. Execute it