Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Answered some questions #46

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,13 @@ Useful resources:
</details>

<details>
<summary><b>How do you get help on the command line? ***</b></summary><br>
<summary><b>How do you get help on the command line? </b></summary><br>

- `man` [commandname] can be used to see a description of a command (ex.: `man less`, `man cat`)

- `-h` or `--help` some programs will implement printing instructions when passed this parameter (ex.: `python -h` and `python --help`)
- `apropos` [topic] is a good resource to get commands related to the topic.
- `help` [bash-builtin] will show you a brief summarie of a builtin bash command (ex.: `help alias`, `help if`)

</details>

Expand Down Expand Up @@ -347,9 +349,14 @@ Useful resources:
</details>

<details>
<summary><b>Before you can manage processes, you must be able to identify them. Which tools will you use? ***</b></summary><br>
<summary><b>Before you can manage processes, you must be able to identify them. Which tools will you use? </b></summary><br>


`ps` displays information about current running proceses (ex.: `ps aux`)
`pidof` [processname] will show the processes ids of the process name (ex.: `pidof bash`)
`pstree` shows running processes as a tree, use the parameter `-p` to show related PID
`pgrep` looks up for processes based on attributes (ex.: `pgrep -u root bash` will show the PIDs of the processes called bash and owned by root, it can also be used in this way: `pgrep bash` this will show all processes named bash)

To be completed.

</details>

Expand Down