我是jenkins和shell脚本的新手。我正在开发一个任务,我必须创建一个文件并在其中写入$ [Orance.home]。请告诉我有没有命令
答案 0 :(得分:0)
我可能会遗漏一些东西,但你可以做到
# replace MY_FILE.txt content with one line containing ${Orance.home}
echo "${Orance.home}" > MY_FILE.txt
或可能,
# Append ${Orance.home} to MY_FILE.txt
echo "${Orance.home}" >> MY_FILE.txt
或者,您可以使用tee command(我们没有-a
)
echo "${Orance.home}" | tee MY_FILE.txt