Sunuyu indir
Sunum yükleniyor. Lütfen bekleyiniz
1
Kabuk Programlama Shell Scripting(bash)
Aslı Ergün
2
Shell Türleri Bourne Bash Z-dhell C-shell TC-shell Korn
Man csh yazarsak bilgi ediniriz.
3
Hangi Kabuktayız? Echo $SHELL yazarsak /bin/sh ise Bourne
/bin/ksh93 ise Korn /bin/bash ise Bash /bin/zsh ise Z shell /bin/csh ise C shell /bin/tcsh ise TC shell
4
Bash scripting dilidir. "Hello World" script ile baslayalım. Uzantısı
Bash scripting dilidir. "Hello World" script ile baslayalım. Uzantısı .sh olacak bir dosya içine script yazılır. Dosyaya, #!/bin/bash echo "Hello, World " yaz Mod değiştir chmod a+x /where/i/saved/it/hello_world.sh veya chmod 700 /where/i/saved/it/hello_world.sh /where/i/saved/it/hello_world.sh yazarak calıstır. Pwd calisilan klasoru gosterir.
5
Değişkenler #!/bin/bash STRING="HELLO WORLD!!!" echo $STRING
6
Yönlendirme ls > dosya.txt sort < dosya.txt > sirali.txt
date >> sirali.txt
7
Değer Girme(read) #!/bin/bash clear echo " Adınızı Girin" read name
echo " Yasınızı girin" read age echo " Cinsiyet girin: K/E" read sex echo " Siz $age yasında $sex cinsiyetinde $name adlı kisisiniz « Aynısı echo olmadan read komutu ile: clear read -p "Please enter your name : " name read -p "Please enter your age : " age read -p "Please enter your sex. Male/Female : " sex echo "So you're a $age year old $sex called $name« Temiz bosluklar basacak sekilde: clear read -p "Please enter your name : " name echo "" read -p "Please enter your age : " age echo "" read -p "Please enter your sex. Male/Female : " sex echo "" echo "So you're a $age year old $sex called $name"Now we have an efficient and clean Bash script.
8
If Cumleleri if [ $fruit = " elma " ] then echo " Elmalar..." elif [ $fruit = armut] then echo " Armutlar..." elif [ $fruit = muz ] then echo " Muzlar" else echo " Geriye Portakal kaldı!" fi #!/bin/bash directory="./BashScripting" # bash check if directory exists if [ -d $directory ]; then echo "Directory exists" else echo "Directory does not exists" fi
9
If-else #!/bin/bash # Declare variable choice and assign value 4 choice=4 # Print to stdout echo "1. Bash" echo "2. Scripting" echo "3. Tutorial" echo -n "Please choose a word [1,2 or 3]? " # Loop while the variable choice is equal 4 # bash while loop while [ $choice -eq 4 ]; do # read user input read choice # bash nested if/else if [ $choice -eq 1 ] ; then echo "You have chosen word: Bash" else if [ $choice -eq 2 ] ; then echo "You have chosen word: Scripting" else if [ $choice -eq 3 ] ; then echo "You have chosen word: Tutorial" else echo "Please make a choice between 1-3 !" echo "1. Bash" echo "2. Scripting" echo "3. Tutorial" echo -n "Please choose a word [1,2 or 3]? " choice=4 fi fi fi done
10
Aritmetik Karşılaştırma
-lt < -gt > -le <= -ge >= -eq == -ne != #!/bin/bash # declare integers NUM1=2 NUM2=2 if [ $NUM1 -eq $NUM2 ]; then echo "Both Values are equal" else echo "Values are NOT equal" fi
11
String Karşılaştırma = equal != not equal < less then
> greater then -n s1 string s1 is not empty -z s1 string s1 is empty #!/bin/bash #Declare string S1 S1="Bash" #Declare string S2 S2="Scripting" if [ $S1 = $S2 ]; then echo "Both Strings are equal" else echo "Strings are NOT equal" fi
12
For loop #!/bin/bash # bash for loop for f in $( ls /var/ ); do echo $f done
13
While #!/bin/bash COUNT=6 # bash while loop while [ $COUNT -gt 0 ]; do echo Value of count is: $COUNT let COUNT=COUNT-1 done
14
Until #!/bin/bash COUNT=0 # bash until loop until [ $COUNT -gt 5 ]; do echo Value of count is: $COUNT let COUNT=COUNT+1 done
15
Fonksiyonlar echoFunction() { echo "echo is Called" } fooBar() { echo "Functions are FUN!" } echoFunction; fooBar; // fonksiyon çağırımı echoFunction;
Benzer bir sunumlar
© 2024 SlidePlayer.biz.tr Inc.
All rights reserved.