my_makefile echo >> my_makefile echo "fi-6ren">
gpt4 book ai didi

linux - 以另一个用户身份运行 makefile 命令

转载 作者:太空狗 更新时间:2023-10-29 12:35:47 25 4
gpt4 key购买 nike

我有两个脚本,归 root 所有。

#!/bin/sh
#script1.sh
echo "all: first" > my_makefile
echo >> my_makefile
echo "first: " >> my_makefile
echo "\ttouch file.txt" >> my_makefile

#!/bin/sh
#script2.sh
while true
do
make -f my_makefile
sleep 10
done

script2.sh 被称为“sudo sh script.sh”并不断地在 my_makefile 上运行 make。 script1.sh 由个人用户调用以更改 makefile。

如何运行 makefile 命令以使 file.txt 归用户所有,而不是 root?

最佳答案

#!/bin/sh
#script1.sh
...
echo "\tchown "`logname`" file.txt" >> my_makefile

关于linux - 以另一个用户身份运行 makefile 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12079644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com