-
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
40 additions
and
1 deletion.
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,39 @@ | ||
# [Linux] The Linux Handbook | ||
|
||
## 1. Introduction to Linux | ||
|
||
- Linux = Operating System 중 하나 | ||
- most popular Open Source and Free | ||
|
||
## 30. du | ||
|
||
- du | ||
- calculate the size of a directory as a whole | ||
|
||
## 31. df | ||
|
||
- df | ||
- used to get disk usage information | ||
|
||
## 38. jobs | ||
|
||
- background usgin the & symbol | ||
- get the background process jobs | ||
|
||
## 43. nohup | ||
|
||
- nohup | ||
- to let the process continue working event after you log out | ||
|
||
## 44. xargs | ||
|
||
- xargs | ||
- to convert input from standard input into arguments to a command | ||
|
||
## 54. traceroute | ||
|
||
- steps that your packets go through | ||
|
||
# Reference | ||
|
||
[1] The Linux Handbook, https://thevalleyofcode.com/linux/ |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# The JavaScript Handbook | ||
# [JavaScript] The JavaScript Handbook | ||
|
||
## 7. Variables | ||
|
||
|