删除文本文件中的奇数行
文件:
/home/USER/DIR/a
http://www.here.is.a.hyper.link.net/
/home/USER/DIR/b
http://www.here.is.another.hyper.link.net/
需要删除此文件(PUBLIC-DIRECTORY-LIST
)中的所有奇数行吗?它适用于我的批处理脚本,可以在下面找到(dropbox 批处理 puburl 创建者):
for PATH in `cat LIST`
do
echo $PATH
dropbox puburl $PATH
done > PUBLIC-DIRECTORY-LIST
我是否只需在脚本末尾附加命令来修剪 PUBLIC-DIRECTORY-LIST
?
File:
/home/USER/DIR/a
http://www.here.is.a.hyper.link.net/
/home/USER/DIR/b
http://www.here.is.another.hyper.link.net/
Need to remove all the odd lines in this file (PUBLIC-DIRECTORY-LIST
)? Its for my batch script which can be found below (dropbox batch puburl creator):
for PATH in `cat LIST`
do
echo $PATH
dropbox puburl $PATH
done > PUBLIC-DIRECTORY-LIST
Do I just append the command to prune PUBLIC-DIRECTORY-LIST
at the end of the script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会使用 awk,但这只是我的情况:
I'd use awk for it, but that's just me:
为了完整起见,这里是
sed
表达式:它与 这里除了使用额外的
1d
命令之外,这会删除第一行,因此打印奇数行而不是偶数行。For completeness here is the
sed
expression:It is exactly as here except with an extra
1d
command, this deletes the first line and so prints the odd lines instead of the even ones.