編寫個shell腳本將當前目錄下大於10K的文件轉移到/tmp目錄下

[root@localhost ~]# vi 10K.shbash

#!/bin/bash
#ext-1
#Using for move currently directory to /tmp
for Filename in $(ls -l |awk '$5 > 10240 {print $9}')
do
mv $Filename /tmp
done
ls -la /tmp
echo "Done!"ide

相關文章
相關標籤/搜索