码迷,mamicode.com
首页 > 系统相关 > 详细

shell编程题(十三)

时间:2020-01-05 16:05:53      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:col   div   one   print   code   ash   tmp   pre   转移   

题目:

编写个shell脚本将当前目录下大于10K的文件转移到/tmp目录下。

 

答案:

#!/bin/bash

for FileName in `ls -l | awk $5>10240 {print $9}`; do
    mv $FileName /tmp
done

ls -al /tmp

shell编程题(十三)

标签:col   div   one   print   code   ash   tmp   pre   转移   

原文地址:https://www.cnblogs.com/wanghao-boke/p/12152199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!