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

前端之家收集整理的这篇文章主要介绍了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
原文链接:https://www.f2er.com/bash/385995.html

猜你在找的Bash相关文章