删除文本文件中的奇数行

发布于 2024-08-08 21:26:03 字数 434 浏览 3 评论 0原文

文件:

/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酷到爆炸 2024-08-15 21:26:03
# awk 'NR%2==0' file
http://www.here.is.a.hyper.link.net/
http://www.here.is.another.hyper.link.net/
# awk 'NR%2==0' file
http://www.here.is.a.hyper.link.net/
http://www.here.is.another.hyper.link.net/
你是我的挚爱i 2024-08-15 21:26:03

我会使用 awk,但这只是我的情况:

awk '{if(i++%2)print}' foo.txt

I'd use awk for it, but that's just me:

awk '{if(i++%2)print}' foo.txt
━╋う一瞬間旳綻放 2024-08-15 21:26:03

为了完整起见,这里是 sed 表达式:

sed -e '1d;n;d' file

它与 这里除了使用额外的1d命令之外,这会删除第一行,因此打印奇数行而不是偶数行。

For completeness here is the sed expression:

sed -e '1d;n;d' file

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文