在脚本中使用 echo

发布于 2024-12-12 11:40:02 字数 245 浏览 2 评论 0原文

我尝试使用复制的脚本,其中包括以下命令,

echo "rc  $2" > $WORKDIR/out.dat

我猜它会尝试将一些内容输出到文件 out.dat。但“rc $2”是什么意思?

它还包括

echo "PWD" >> $WORKDIR/env.txt

为什么它使用>>此处代替 >

I tried to use a copied script, which includes the following command

echo "rc  $2" > $WORKDIR/out.dat

I can guess it tries to output some contents to file out.dat. But what does "rc $2" mean?

It also includes

echo "PWD" >> $WORKDIR/env.txt

Why it uses >> here instead of >

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

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

发布评论

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

评论(2

倾城泪 2024-12-19 11:40:02

“rc”在这里没有任何意义,“PWD”也没有。它们只是字符串。不过,它们可能在 out.dat 和 env.txt 中表示某些含义。 “$2”是对用于调用脚本的第二个参数的引用。

>> 表示附加到文件,而不是像 > 那样覆盖它。

"rc" means nothing here and neither does "PWD". They are just strings. They presumably mean something in out.dat and env.txt, though. The "$2" is a reference to the second arg used to call the script.

>> means append to a file rather than overwriting it like > will do.

遮了一弯 2024-12-19 11:40:02

$2 是脚本执行时第二个传入的变量。

例如:

./script.sh foo bar   # $2 would be bar

>> 表示附加到文件而不是完全覆盖文件。

$2 is the 2nd incoming var when the script is executed.

example:

./script.sh foo bar   # $2 would be bar

>> means append to file instead of overwrite file entirely.

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