1. 程式人生 > >【shell腳本學習-3】

【shell腳本學習-3】

profile 定義變量 關於 read part 學習 打印 type 程序

part-1:

#!/bin/bash
#source,sh,./shell_name :shell腳本執行方法
#

#變量
#declare :修飾
x=10/2
echo "$x"
#將變量修飾為只讀
declare -r x
x="a" #再次為變量賦值檢驗修飾
echo "$x"
#將變量修飾為只為整數
declare -i x
x=10
echo "$x"
#typeset <=> declare
y=8/2
echo "$y"
typeset -i y
y="b"
echo "$y"


#x=1;
#w=9;
#let "x+1"
#echo "$x"

#y="$(x+w)";
#z="a";
#echo "$x $y $z";

:<<cat
Alias rm="rm -i"

#./home/user_name,/etc/profile,/etc/bashrc 用戶shell的配置文件
more shells #shell的種類
echo "$SHELL ‘當前shell的版本是‘ $BASH_VERSION" #打印當前使用shell類型
echo "hello world"
echo "$?" #shell退出狀態碼<0-255>
abc
echo "$?"
#exit 120
#echo "$?"
cat

:<<ftp #多行註釋

echo "$#" #返回傳入參數的個數 #單行註釋
echo "$@"
echo "$0" #返回當前腳本的名稱
echo "$_"
echo "$*" #分別列出參數


echo "$x"
wile getopt ":pq:"y:
do
case $y in
"p")
echo "$y";;
"q")
echo "$x $y";;
"::")
echo "$x";;
"?")
echo "$x
"*")
echo "z";;";;
esac
echo "w"
done
#for i in `ls .`
#do
# if echo "$i" | grep "a"

# then
# echo "$i"
# fi
#done
ftp

#!/bin/bash
#關於引號 "" ,‘‘,``

:<<FTP
echo "開始你的程序"
read "$z"
echo "當前所在的目錄是 `pwd` and 你主機的地址是 `ifconfig`"
echo "程序結束"
FTP

#全局和局部變量

#定義一個函數
func(){
echo "$x" #輸出這個全局變量
}
x="hello world" #定義一個全局變量
func


func(){
y=1 #在函數內部定義變量
}
func
echo "$y"

#調用定義的函數

【shell腳本學習-3】