while删除空行,并打印非空尾行

2018-03-12

打印非空尾行,sed -n '$p' $file

#!/bin/sh
file=$1
if [[ -z $1 ]];then
echo Usage $0 file;
exit 0;
fi
while [[ -z $tt ]];do
tt=$(sed -n '$p' $file)
if [[ -z $tt ]];then
sed -i '$d' $file
fi
done
sed -n '$p' $file

分类:Linux | 标签: |

相关日志

评论被关闭!