From:http://os.51cto.com/art/200912/165922.htm
寫一個指令碼,來檢查某個檔案是否存在,如果存在,則輸出它的詳細資料,如果不存在,則提示輸出檔案不存在。在給出這個指令碼之前,先來瞭解一下如下幾個命令:檔案upload.zip為例
1. # ll -h upload.zip
-rw-r--r-- 1 root root 3.3M 06-28 23:21 upload.zip
2. # file upload.zip
upload.zip: Zip archive data, at least v1.0 to extract
3. # ls -i upload.zip
1427041 upload.zip
4. # df -h upload.zip
檔案系統 容量 已用 可用 已用% 掛載點
/dev/hda3 9.5G 5.7G 3.4G 64% /
下面的指令碼將把這些命令融合在一起,來顯示一個檔案的詳細資料。
#!/bin/bash
# This script gives information about a file.
FILENAME="$1"
echo "Properties for $FILENAME:"
if [ -f $FILENAME ]; then
echo "Size is $(ls -lh $FILENAME | awk '{ print $5 }')"
echo "Type is $(file $FILENAME | cut -d":" -f2 -)"
echo "Inode number is $(ls -i $FILENAME | cut -d" " -f1 -)"
echo "$(df -h $FILENAME | grep -v 檔案系統 | awk '{ print "On",$1", \
which is mounted as the",$6,"partition."}')"
else
echo "File does not exist."
fi
記得要賦予指令碼可執行許可權哦!!!!
chomd u+x wenjian.sh
執行指令碼的結果如下:
# /jiaoben/wenjian.sh upload.zip
Properties for upload.zip:
Size is 3.3M
Type is Zip archive data, at least v1.0 to extract
Inode number is 1427041
On /dev/hda3, which is mounted as the / partition.
這樣就比我們一個一個敲命令來檢查檔案的資訊要方便多了。
如果對cut命令不是很瞭解,可以參考以下說明:
-----------------------------------------------------------------------
-----------------------------------------------------------------------
cut命令可以從一個文字檔或者文字資料流中提取文本列。
命令用法:
cut -b list [-n]
cut -c list
cut -f list [-d delim][-s]
上面的-b、-c、-f分別表示位元組、字元、欄位(即byte、character、field);
list表示-b、-c、-f操作範圍,-n常常表示具體數字;
file表示的自然是要操作的文字檔的名稱;
delim(英文全寫:delimiter)表示分隔字元,預設情況下為TAB;
-s表示不包括那些不含分隔字元的行(這樣有利於去掉注釋和標題)
上面三種方式中,表示從指定的範圍中提取位元組(-b)、或字元(-c)、或欄位(-f)。
範圍的表示方法:
M
只有第M項
M-
從第M項一直到行尾
M-N
從第M項到第N項(包括N)
-N
從一行的開始到第N項(包括N)
-
從一行的開始到結束的所有項
範例:
# cat example
test2
this is test1
# cut -c1-6 example ## print 開頭算起前 6 個字元
test2
this i
-c m-n 表示顯示每一行的第m個字元到第n個字元。例如:
---------file-----------
wokao 84 25000
---------file-----------
# cut -c 1-5,10-25 file
wokao 25000
-f m-n 表示顯示第m欄到第n欄(使用tab分隔)。例如:
---------file-----------
wokao 84 25000
---------file-----------
# cut -f 1,3 file
wokao 25000
我們經常會遇到需要取出分欄位的檔案的某些特定欄位,例如 /etc/password就是通過":"分隔各個欄位的。可以通過cut命令來實現。例如,
我們希望將系統帳號名儲存到特定的檔案,就可以:
cut -d":" -f 1 /etc/passwd > /tmp/users
-d用來定義分隔字元,預設為tab鍵,-f表示需要取得哪個欄位
如:
使用|分隔
cut -d'|' -f2 1.test>2.test
使用:分隔
cut -d':' -f2 1.test>2.test
這裡使用單引號或雙引號皆可。