带有条件回显的 Shell 脚本

发布于 2024-12-09 18:43:09 字数 624 浏览 0 评论 0原文

如何排除我的脚本正在执行的操作并且只有 echo 的打印?

例如,我正在对一个目录进行皮重处理,并且我不希望它所压缩的每个文件都回显......只需要回显命令。

#! /bin/bash 

clear

echo "Compressing the files"

cd ~/LegendaryXeo/html/
tar --exclude=".git" -cvf site.tar *
mv site.tar ~/LegendaryXeo/work/
cd ~/LegendaryXeo/work/

clear

echo "Extracting the site"

tar -xvf site.tar 

echo "Deleting Tar"

cd ~/LegendaryXeo/work/

rm -f site.tar

clear

echo "Copying files to server"

scp -r ~/LegendaryXeo/work/* [email protected]:~/../../domains/

How do I exclude what my script is doing and only have echo's print?

For instance, i am taring a directory and I don't want every file it tar's to echo.. only the echo command.

#! /bin/bash 

clear

echo "Compressing the files"

cd ~/LegendaryXeo/html/
tar --exclude=".git" -cvf site.tar *
mv site.tar ~/LegendaryXeo/work/
cd ~/LegendaryXeo/work/

clear

echo "Extracting the site"

tar -xvf site.tar 

echo "Deleting Tar"

cd ~/LegendaryXeo/work/

rm -f site.tar

clear

echo "Copying files to server"

scp -r ~/LegendaryXeo/work/* [email protected]:~/../../domains/

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

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

发布评论

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

评论(1

沦落红尘 2024-12-16 18:43:09

tar 的输出重定向到 /dev/null

tar [your options] [files] &> /dev/null

脚本中的任何 echo 命令仍会输出到屏幕。

Redirect the output of tar to /dev/null:

tar [your options] [files] &> /dev/null

Any echo command you have in your script will still output to the screen.

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