Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 245 Bytes

shell.md

File metadata and controls

28 lines (18 loc) · 245 Bytes

Linux Commands

Some shell/bash commands

1. Delete folder:

rm <path_to_folder> -rf

2. List things in folder:

ls

# lists hidden stuff
ls -a

3. Get path to current folder:

pwd

grep & find

TODO