由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 怎样删除每个文件的前3行?
相关主题
问题,在pine里怎幺删除不了email的附件?请教e-mail的设置
Questions about Makefile[转载] C problem
anyone used softbench in HP-UX???Mount cdrom failure
菜鸟一问xfig question!
[转载] why it is so slow in linux?Re: HELP PLS!
[转载] multi-timer programming in unix, question?do you guys install solaris 9 on a pc?
about network setting in Unix..ctrl+c doesn't work in csh, help!
[转载] anyone gives me a hint on HostID.Re: problem about sgi origin 2000 and ibm sp
相关话题的讨论汇总
话题: file话题: 删除话题: sh话题: 文件话题: xv
进入Unix版参与讨论
1 (共1页)
R**g
发帖数: 59
1
怎么把一个目录下的所有文件的前3行删除?
谢谢!
t*********l
发帖数: 30
2
#!/bin/sh
for file
do
mv ${file} ${file}.tmp
sed -e '1,3d' > ${file}
rm ${file}.tmp
done
save this file and then run
sh

【在 R**g 的大作中提到】
: 怎么把一个目录下的所有文件的前3行删除?
: 谢谢!

a***n
发帖数: 262
3
#!/bin/sh -xv
#To get little hints please delete -xv flags
#remove first three lines of everyfile in current directory
#except the shell program
for file in `ls`
do
if ( test -f $file && test $file != `basename $0` )
then
sed 1,3d $file > $file.tmp
mv $file.tmp $file
else
echo "$0: $file can't be changed" 1>&2
fi
done

【在 R**g 的大作中提到】
: 怎么把一个目录下的所有文件的前3行删除?
: 谢谢!

R**g
发帖数: 59
4
thank you very much. It really saves me lots of time.

【在 a***n 的大作中提到】
: #!/bin/sh -xv
: #To get little hints please delete -xv flags
: #remove first three lines of everyfile in current directory
: #except the shell program
: for file in `ls`
: do
: if ( test -f $file && test $file != `basename $0` )
: then
: sed 1,3d $file > $file.tmp
: mv $file.tmp $file

1 (共1页)
进入Unix版参与讨论
相关主题
Re: problem about sgi origin 2000 and ibm sp[转载] why it is so slow in linux?
[转载] 紧急求助:W2K下,不小心删除的文件怎么恢复呀????在线等[转载] multi-timer programming in unix, question?
急救: 用rm 删除的文件可以恢复吗?about network setting in Unix..
Help:如何删除这样的目录?[转载] anyone gives me a hint on HostID.
问题,在pine里怎幺删除不了email的附件?请教e-mail的设置
Questions about Makefile[转载] C problem
anyone used softbench in HP-UX???Mount cdrom failure
菜鸟一问xfig question!
相关话题的讨论汇总
话题: file话题: 删除话题: sh话题: 文件话题: xv