commented on `dirs`

pull/89/head
murima 2015-06-23 15:46:38 +03:00
parent 3d2dd0344a
commit 1639298e1a
1 changed files with 1 additions and 2 deletions

View File

@ -147,7 +147,7 @@ Notes:
- For a simple web server for all files in the current directory (and subdirs), available to anyone on your network, use:
`python -m SimpleHTTPServer 7777` (for port 7777 and Python 2) and `python -m http.server 7777` (for port 7777 and Python 3).
-For switching between directories while working on multiple directories use `pushd` to push the directories in a stack and you can easily remove them using `popd`, which will remove the topmost directory in the stack or rotate the stack forward or backward using `pushd+n` or `pushd-n`. where `n` is the number of times to rotate the stack
-For switching between directories while working on multiple directories use `pushd` to push the directories in a stack and you can easily remove them using `popd`, which will remove the topmost directory in the stack or rotate the stack forward or backward using `pushd+n` or `pushd-n`. where `n` is the number of times to rotate the stack. To view all the directories in the stack use `dirs`
## Processing files and data
@ -256,7 +256,6 @@ Notes:
- Use `dmesg` whenever something's acting really funny (it could be hardware or driver issues).
-use eg to get examples of commands on the terminal
## One-liners
A few examples of piecing together commands: