export PS1=‘komut: ‘
- w
- who
- lastlog
script kayit.log
ile başlatılır exit
komutu ile sonlandırılır.
file kayit.log
- cat
- vim
- nano
- less
- more
- head
- tail -15
pwd
echo $PWD
echo $USER
echo $SHELL
ls --help | grep -- -l
-l komutu ile satır sayar
wc -l
-p: parent
mkdir -p
mkdir -p fotograflar/{ocak,subat,mart}
veya
mkdir -p fotograflar/{1..10}
mkdir -p fotograflar/{a..z}
Shell bu komutu aşağıdaki şekilde düzenler.
mkdir -p fotograflar/ocak fotograflar/subat fotograflar/mart
ls -R
-R: recursive
> (Output forwarding)
Save output to a file.
>>
Append output to a file.
< (Stdin)
Read input from a file.
1> (Stdout)
Redirect output messages.
2> (Stderr)
Redirect error messages.
&> (Stderr)
Redirect output and error messages.
| (Pipe)
Send the output from one program as input to another program.
stdout
Ekran da bir app olarak dev (device) dizininde mevcut. Çıktıyı /dev/stdout
’a yönlendirirsek ekrana yazılacaktır.
echo 'hello' > /dev/stdout
Learn Piping and Redirection - Linux Tutorial
i: insert v: visual yyp: alt satıra kopyala
set number
set number!
reboot
poweroff
- UNIX and Linux System Administration Handbook : Nemeth, Evi, Snyder, Garth, Hein, Trent R., Whaley, Ben, Mackin, Dan: Amazon.com.tr: Kitap
- FREE 4 Hour Ubuntu Course for Beginners
- Linux Operating System - Crash Course for Beginners
- The 50 Most Popular Linux & Terminal Commands - Full Course for Beginners