在同一个rabbitmq的“rabbitmq-env”剧本中,在以下行中存在“-h”,“ - f”:
while [ -h "$SCRIPT_PATH" ] ; do
[ ! -f ${CONF_ENV_FILE} ] ; then
这些符号的含义是什么?
答案 0 :(得分:5)
[
是test
。来自help test
:
-f FILE True if file exists and is a regular file.
...
-h FILE True if file is a symbolic link.