我正在尝试使用nohup
这样的函数调用:
function1(){
while true
do
echo "function1"
sleep 1
done
}
nohup function1 &
# ...... some other code
但可能是看不到该功能nohup
,我收到此错误:
nohup: failed to run command `function1' : No such file or dictionary
我不想为我的函数创建新的 sh 文件。我怎样才能解决这个问题?