mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 21:20:01 -06:00
5 lines
84 B
Bash
Executable File
5 lines
84 B
Bash
Executable File
#!/bin/bash
|
|
DELAY=0.3
|
|
nohup bash -c "sleep $DELAY && $*" 1>/dev/null 2>&1 &
|
|
echo $!
|