Skip to content

Instantly share code, notes, and snippets.

@mdakram28
Created October 31, 2022 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdakram28/317527f79b6dbc3a3f8973496a6a5839 to your computer and use it in GitHub Desktop.
Save mdakram28/317527f79b6dbc3a3f8973496a6a5839 to your computer and use it in GitHub Desktop.
# This is a comment
# 1. Print Directory Content
ls
# 2. Enter a Directory
cd <Directory>
# 3. Exit The current directory
cd ..
# 4. Crate a file
touch <filename>
# 5. Edit or create a file using vim
vim <filename>
# Clear the screen
clear
# Make a new directory
mkdir <directory>
# Delete a file
rm <filename>
# Delete a directory
rm -r <directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment