六個你可能不知道的bash小秘笈
發布時間:
2017-06-21 16:13:38
bash 是一個為GNU計劃編寫的Unix shell。它的名字是一系列縮寫:Bourne-Again SHell — 這是關于Bourne
shell(sh)的一個雙關語(Bourne again / born
again)。bash我們很常用,但是更高級的用法你知道嗎?看完下面的示例,你一定會有啟發的。
1、 按時間先后,列出最后的十個目錄
ls /mnt/daily/Concord/main -sort -t | awk /_[0-9]+-[0-9]/'{print $NF}' | tail -10
/mnt/daily/LotusLive目錄內容如下:
SC10.0_Docs :dir
SC10.0_DocsProxy :dir
SC20.0_Docs :dir
SC20.0_DocsProxy :dir
SC30.0_Docs :dir
SC30.0_DocsProxy :dir
SC30.16_Docs :dir
SC30.16_Viewer :dir
tsm_backup :file
2、 遞歸刪除空目錄
# $1必須是絕對路徑
crurl=$1
func_hdir(){
echo $crurl
cd $crurl
for aitem in `ls -l | grep "^d" | awk '{print $9}'`; do
crurl=$crurl/$aitem
func_hdir $aitem
done
dirc=`ls $crurl`
if [ "$dirc" = "" ]
then
echo $crurl
rm -rf $crurl
fi
crurl=${crurl%/*}
}
func_hdir
3、sed刪除特定的行
sed -e '/^[ ]*$/d' osgi_file > target_file //刪除空行
sed -d '/concord/d' osgi_file>target_file//包涵concord的行
4、 輸出最新的N個目錄
find /mnt/daily/Concord/main -mindepth 1 -maxdepth 1 -type d -printf "%T@%Tx %p" | sort -n -r | head -N
5、 輸出最近5天創建的目錄
find /mnt/daily/Concord/main -mindepth1 -maxdepth 1 -type d -mtime -5
-mtime 較大數是8,超過8就是輸出全部
6、sort by 特定列
如當前工作中的應用,以MSG_NODE_%d排序,可用如下命令
find . -type f -name envconfs.conf | grep -v "chatroom"| grep "appnodemessagepool"| sort -t '.' -k4
find . -type f -name envconfs.conf|grep "appnodemessagepool"|sort -t '/' -k2
./com.rcloud.appnodemessagepool.MSG_NODE_3/conf/envconfs.conf
./com.rcloud.appnodemessagepool.MSG_NODE_4/conf/envconfs.conf
./com.rcloud.appnodemessagepool.MSG_NODE_5/conf/envconfs.conf
上一篇:
新手Web設計師應該避免的六宗罪
下一篇:
前端是有多難?