Created
September 22, 2025 01:21
-
-
Save christian-korneck/8cdb5899eb20f6f65ae16f9a46a4e8e1 to your computer and use it in GitHub Desktop.
Unix - start GUI app fully detached (windows `start <cmd>` equivalent)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| nohup "$@" > /dev/null 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment