标签:shell
又到了写BLOG的时间了,下面分享一个我自己写的shell。作用是清空目录下的文件内容,且保留该目录下的文件名。
一、脚本实现:
[root@wenwen 77]# vim clearcontent.sh
#!/bin/bash
for d in `find /root/77 -name "*.txt"`
do
cat /dev/null > $d
done
二、find . -name "*.txt"|awk ‘{system("> "$0)}‘
find . -name "*.txt" -exec cp /dev/null {} \;
find . -name "*.txt" -exec bash -c ">{}" \;
本文出自 “飞奔的小GUI” 博客,请务必保留此出处http://9237101.blog.51cto.com/9227101/1922926
标签:shell
原文地址:http://9237101.blog.51cto.com/9227101/1922926