mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-26 09:21:00 +03:00
Merge pull request #1636 from viv1/patch-2
[bash/en]...Added info on changing directories
This commit is contained in:
commit
60be912428
@ -130,6 +130,15 @@ ls -l # Lists every file and directory on a separate line
|
||||
# .txt files in the current directory:
|
||||
ls -l | grep "\.txt"
|
||||
|
||||
# Since bash works in the context of a current directory, you might want to
|
||||
# run your command in some other directory. We have cd for changing location:
|
||||
cd ~ # change to home directory
|
||||
cd .. # go up one directory
|
||||
# (^^say, from /home/username/Downloads to /home/username)
|
||||
cd /home/username/Documents # change to specified directory
|
||||
cd ~/Documents/.. # still in home directory..isn't it??
|
||||
|
||||
|
||||
# You can redirect command input and output (stdin, stdout, and stderr).
|
||||
# Read from stdin until ^EOF$ and overwrite hello.py with the lines
|
||||
# between "EOF":
|
||||
|
Loading…
Reference in New Issue
Block a user