Shell scripts use lots of cool commands! Here
are some common ones:
- `ls`: This shows you all the files in a folder. ๐
- `cd`: This helps you change directories or go to another folder. ๐งญ
- `mkdir`: This command creates a new folder. For example, `mkdir newfolder` creates a folder named 'newfolder'. ๐
- `rm`: This command deletes files. Be careful! ๐
You can type `rm filename` to remove a specific file.
- `cp`: This command copies files. For example, `cp file1 file2` makes a copy of `file1` called `file2`.