Skip to content

Instantly share code, notes, and snippets.

@christian-korneck
Created September 22, 2025 01:21
Show Gist options
  • Select an option

  • Save christian-korneck/8cdb5899eb20f6f65ae16f9a46a4e8e1 to your computer and use it in GitHub Desktop.

Select an option

Save christian-korneck/8cdb5899eb20f6f65ae16f9a46a4e8e1 to your computer and use it in GitHub Desktop.
Unix - start GUI app fully detached (windows `start <cmd>` equivalent)
#!/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