#!/bin/bash
ls -1 ./ |
while read FILE
do
{
if [ "${FILE##*.}" == "exe" ]
then
tar -cjf "$FILE".tar.bz2 "$FILE" --remove-files;
fi
}
done
很简单的一个脚本,写这个的目的当初就是为了把一个目录的视频全部压缩成bz2文件
比较俩文件并统计行数
#!/bin/bash
while read i
do
echo "$i `cat b.txt | grep $i | wc -l`" >>c.txt
从文件中一行一行的读取
cat line.txt |while read i
> do
> echo $i
> done
或者:
while read i
> do
> echo $i
> done < line.txt
阅读(1268) | 评论(0) | 转发(0) |