Skip to content

Commit

Permalink
new ep
Browse files Browse the repository at this point in the history
  • Loading branch information
realtux committed Feb 16, 2020
1 parent 3df2c50 commit 8c004d1
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
12 changes: 12 additions & 0 deletions 095/notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
reasons:
resource management:
- top tier
- display managers give even more flexibility
software:
- majority comes from either a repo or github
no cost/batteries included:
- free
- no cost for extra features
unified environment:
- work on linux, deploy to linux
- easier to interact between linux machines
46 changes: 46 additions & 0 deletions 096/commands.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/env bash

# tree navigation
pwd
cd
cd /
cd ..
ls
ls -l

# file/directory manipulation
touch
mv
cp
cp -r
rm
rm -r
mkdir
rmdir

# reading/editing files
cat
nano
vim
less
more
tail -f

# super user
sudo
sudo -s

# miscellaneous
clear
reset
exit
poweroff
reboot
man
history
history -c

# tips and tricks
- hit up for last command
- hit tab for autocomplete
- use man for documentation

0 comments on commit 8c004d1

Please sign in to comment.