back       next

at

ways to continue run command after shell exit

  1. screen:
    screen -dmS <screen_name> <command>
    exit

  2. nohup:
    nohup <command> &
    exit

  3. at:
    echo "<command>" | at now
    exit

  4. disown:
    <command> &
    disown -h
    exit

Syndicate content