10 lines
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
if ! gnome-terminal -- $*; then
|
|
if ! konsole -e $*; then
|
|
if ! xfce4-terminal -e $*; then
|
|
$*
|
|
fi
|
|
fi
|
|
fi
|