bash – 这个shell命令中“ – ”(双破折号)是什么意思?

我有这个 shell命令:
kill `cat -- $PIDFILE`

双重的是什么?为什么不直接使用

kill `cat $PIDFILE`
– 告诉cat不要尝试解析它后面的命令行选项.

例如,如果变量$PIDFILE被定义为PIDFILE =“ – version”,请考虑在两种情况下会发生什么.在我的机器上,它们给出以下结果:

$cat $PIDFILE
cat (GNU coreutils) 6.10
copyright (C) 2008 Free Software Foundation,Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY,to the extent permitted by law.

Written by Torbjorn Granlund and Richard M. Stallman.

$cat -- $PIDFILE
cat: --version: No such file or directory

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...