shell脚本命令疑问
我的 shell 脚本 CONFIGS_ARCHIVE 中有一个命令
CONFIGS="`tar -tzf ${CONFIGS_ARCHIVE}`"
是 tar.gz 文件。如果执行该命令,CONFIGS 的值是什么?
谢谢, Linux彭瑟尔
I have a command in my shell script
CONFIGS="`tar -tzf ${CONFIGS_ARCHIVE}`"
CONFIGS_ARCHIVE is tar.gz file. If the command is executed what will be the value of CONFIGS?
Thanks,
LinuxPenseur
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
` 引号用于执行命令。除非您添加`引号,否则 shell 会将该命令视为常规字符串。
如果你想执行一个命令并将其保存到一个变量中,就像你所做的那样,你必须加上`引号
` quote is for executing the command. Unless you put that ` quote, shell will treat that command as a regular string.
If you want to execute a command and save it to a variable like you do, you must put that ` quote