https://github.com/noahgift/coursera-de-c2-using-linux
https://github.com/noahgift/coursera-de-c2-using-linux
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/noahgift/coursera-de-c2-using-linux
- Owner: noahgift
- Created: 2021-10-28T18:59:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-28T19:22:13.000Z (almost 4 years ago)
- Last Synced: 2025-01-12T15:33:19.555Z (9 months ago)
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coursera-DE-C2-Using-Linux
An exploration of the Linux Shell
## Goal: Learn the basics of Linux Shell
Let's practice some common shell commands
### Part 1: Navigate the file system
1. Create a directory `foo` via `mkdir foo` command
2. `cd` into the `foo` directory### Part 2: Create a file with touch
1. Create a file using `touch newfile.txt`
2. Run the command again? What happens?### Part 3: Remove files and directories
1. Remove the directory `foo` via the command `rm -rf foo`
2. Make a file and then delete it: `touch bar.xt` then run `rm bar.txt`### Part 4: List files
1. list the contents of `/usr/bin` by running the command `ls -l /usr/bin`
2. What did you see?