forked from engineer-man/youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |