真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

AdvancedBash-ShellGuide(Version10)學(xué)習(xí)筆記三

書上的腳本比較多 記錄比較有用的腳本

更好的方式檢查命令行參數(shù)是否為數(shù)字

成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)介紹好的網(wǎng)站是理念、設(shè)計和技術(shù)的結(jié)合。創(chuàng)新互聯(lián)擁有的網(wǎng)站設(shè)計理念、多方位的設(shè)計風(fēng)格、經(jīng)驗豐富的設(shè)計團隊。提供PC端+手機端網(wǎng)站建設(shè),用營銷思維進行網(wǎng)站設(shè)計、采用先進技術(shù)開源代碼、注重用戶體驗與SEO基礎(chǔ),將技術(shù)與創(chuàng)意整合到網(wǎng)站之中,以契合客戶的方式做到創(chuàng)意性的視覺化效果。

40 # E_WRONGARGS=85 # Non-numerical argument (bad argument format).
41 #
42 # case "$1" in
43 # "" ) lines=50;;
44 # *[!0-9]*) echo "Usage: `basename $0` lines-to-cleanup";
45 # exit $E_WRONGARGS;;
46 # * ) lines=$1;;
47 # esac


更好的方式檢查命令行參數(shù)數(shù)量是否正確

1 E_WRONG_ARGS=85
2 script_parameters="-a -h -m -z"
3 # -a = all, -h = help, etc.
4
5 if [ $# -ne $Number_of_expected_args ]
6 then
7 echo "Usage: `basename $0` $script_parameters"
8 # `basename $0` is the script's filename.
9 exit $E_WRONG_ARGS
10 fi


更好的方式檢查是否在正確的目錄

63 # cd /var/log || {
64 # echo "Cannot change to necessary directory." >&2
65 # exit $E_XCD;
66 # }


備份源目錄的文件并且在目標目錄解壓

(cd /source/directory && tar cf - . ) | (cd /dest/directory && tar xpvf -)
一個更加有效的腳本是
cd source/directory
# tar cf - . | (cd ../dest/directory; tar xpvf -)
或
cp -a /source/directory/* /dest/directory
# cp -a /source/directory/* /source/directory/.[^.]* /dest/directory 
#這個復(fù)制源目錄的隱藏文件


備份最近24小時內(nèi)改變的文件

#!/bin/bash

BACKUPFILE=backup-$(date +%m-%d-%Y)
archive=${1:-$BACKUPFILE}
# 如果在命令行中沒有指定參數(shù),就是用如下的格式
# it will default to "backup-MM-DD-YYYY.tar.gz."

tar cvf - `find . -mtime -1 -type f -print` > $archive.tar
gzip $archive.tar
echo "Directory $PWD backed up in archive file \"$archive.tar.gz\"."


如果文件太多或者文件名有空白字符,上面的腳本可能出錯

更好的備份方案   tar -r 追加到歸檔文件

# -------------------------------------------------------------------
# find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar"
或
# find . -mtime -1 -type f -exec tar rvf "$archive.tar" '{}' \;
exit 0


獲取命令行參數(shù)的最后一個參數(shù)

args=$# # Number of args passed.
lastarg=${!args}
# Note: This is an *indirect reference* to $args ...
# Or: lastarg=${!#}


${file#*/} :拿掉第一條 / 及其左邊的字符串:dir1/dir2/dir3/my.file.txt
${file##*/} :拿掉最后一條 / 及其左邊的字符串:my.file.txt
${file#*.} :拿掉第一個 . 及其左邊的字符串:file.txt
${file##*.} :拿掉最后一個 . 及其左邊的字符串:txt
${file%/*} :拿掉最后條 / 及其右邊的字符串:/dir1/dir2/dir3
${file%%/*} :拿掉第一條 / 及其右邊的字符串:(空值)
${file%.*} :拿掉最后一個 . 及其右邊的字符串:/dir1/dir2/dir3/my.file
${file%%.*} :拿掉第一個 . 及其右邊的字符串:/dir1/dir2/dir3/my




網(wǎng)頁標題:AdvancedBash-ShellGuide(Version10)學(xué)習(xí)筆記三
網(wǎng)站鏈接:http://weahome.cn/article/pcjodg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部