nohup bash 기능

nohup bash 기능

.bashrc:

function keepassxc(){
    "/Applications/KeePassXC.app/Contents/MacOS/KeePassXC" "${@}"
}
export -f keepassxc

터미널에서 출발:

$ nohup keepassxc
nohup: ignoring input and appending output to 'nohup.out'
nohup: failed to run command 'keepassxc': No such file or directory

nohup을 사용하여 bash 기능을 실행하는 방법은 무엇입니까? 사실은 달리고 싶어nohup keepassxc >/dev/null 2>&1 &

관련 정보