有什么作用。 / opt / pat / staging / config / VARIABLES >> / dev / null可以吗?

时间:2018-08-24 09:53:53

标签: bash shell unix

此命令在Shell脚本中是什么意思?在shell脚本中编写此命令的功能是什么?

. /opt/pat/staging/config/VARIABLES>>/dev/null

2 个答案:

答案 0 :(得分:1)

获取文件以便将变量加载到当前环境中,并且仅将stdout(而不是stderr)发送到/dev/null(如果可以,则发送黑洞)。

要同时发送stdout和stderr,请执行>/dev/null 2>&1

答案 1 :(得分:0)

在当前shell的上下文中运行脚本,并将其所有输出发送到空设备,以避免将其包含在当前标准输出中。