nobody
全部博文(293)
分类:
2011-02-27 12:39:54
sed -e 'a\\' -e 'i\\' test 4 删除空行 $ sed '/^$/d;G' file 5 删除名字不为xxx的文件 find ./ ! -name "*._raw_*" -exec rm -fr {} \; 6 删除指定行 sed -i '/abc sa/!d' file 7 date date -d"11 days ago" +%Y-%m-%d 8 grep filter from file grep -f filter_file input_file 9 kill job jobs kill %$(Job_Nr) 10 vim 删除文件内容 :1,$d 11 ls --time-style选项 ls -l --time-style=+%s 12
|