12 lines
281 B
Bash
Executable file
12 lines
281 B
Bash
Executable file
#!/bin/bash
|
|
|
|
fly ()
|
|
{
|
|
nohup $@ < /dev/null > /dev/null 2>&1 &
|
|
echo $!
|
|
}
|
|
|
|
#echo $(fly /usr/bin/chromium --incognito --screen=1 $@)
|
|
#/usr/bin/chromium --incognito --screen=1 $@ &
|
|
/usr/bin/chromium --screen=1 --enable-logging --password-store=basic --v=1 $@ &
|
|
echo $!
|