如何简化shell命令

发布于 2022-09-01 16:30:36 字数 283 浏览 35 评论 0

cd \txt
filelist=`ls`
for file in $filelist
do
    >temp.txt
    echo $file
    cat $file | uniq >> temp.txt
    >$file
    cat temp.txt >> $file
done

如上面代码所示:功能需求是将该目录下所有文件进行cat uniq操作之后保存回该文件,我使用了temp.txt,不知道有没有可以直接写回文件的命令?请指导!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(7

一百个冬季 2022-09-08 16:30:36

改用python吧

终难遇 2022-09-08 16:30:36

建议加上sort命令
cat $file | uniq| sort -o $file

束缚m 2022-09-08 16:30:36
bashcd \txt
filelist=`ls`
for file in $filelist
do
    echo $file
    cat $file | uniq - $file
done
如果没有 2022-09-08 16:30:36

配合zsh使用

时光磨忆 2022-09-08 16:30:36

覆写文件可以借助 tee 命令,修改后代码如下

shellcd /txt
filelist=`ls`
for file in $filelist
do
  cat $file|uniq|tee $file>/dev/null
done

习惯成性 2022-09-08 16:30:36

1首先准备下环境

{ txt }  » pwd                                                                              ~/txt
/home/Honwhy/txt
{ txt }  » ls                                                                               ~/txt
1.txt  2.txt  3.txt
{ txt }  » cat 1.txt                                                                        ~/txt
abcd
abcd
abc
abcde
abc
a
b
c

三份txt内容都是一样的。
2尝试下这个答案的命令http://askubuntu.com/questions/528658/redirect-pipe-output-to-the-same...

filelist=`ls`
for file in $filelist
do
  sort -u $(pwd)/$file | tee $(pwd)/$file >/dev/null
done

sort -u带有uniq的意思。

3.还需要调整。

写下不归期 2022-09-08 16:30:36
cd \txt
filelist=`ls`
for file in $filelist
do
    >temp.txt
    echo $file
    cat $file | uniq | tee temp.txt
    >$file
    cat temp.txt >> $file
done

只修改第七行的最后一个重定向即可,tee 可以做 pipe fitting,详见手册

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