Skip to content

Instantly share code, notes, and snippets.

@ASR19
Last active May 4, 2021 14:00
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 ASR19/ac1e58234362153beced9ec497067e4d to your computer and use it in GitHub Desktop.
Save ASR19/ac1e58234362153beced9ec497067e4d to your computer and use it in GitHub Desktop.
Ashwini_CLI_Drills_I
mkdir -p hello/five/six/seven
cd ~
cd hello/five/six
touch c.txt
cd seven
touch error.log
cd ~
cd hello
mkdir -p one/two/three/four
cd ~
cd hello/one
touch a.txt b.txt
cd two
touch d.txt
cd three
touch e.txt
cd four
touch access.log
cd ~
cd hello
find . -name "*.log" -type f -delete
cd ~
cd hello/one
nano a.txt
# Unix is a family of multitasking, multiuser computer operating
systems that derive from the original AT&T Unix, development
starting in the 1970s at the Bell Labs research center by Ken
Thompson, Dennis Ritchie, and others.
# ^o
#enter
#^x
cd ~
cd hello
rm -rf five
mv one uno
cd uno
mv a.txt two
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment