8 lines
107 B
Bash
Executable File
8 lines
107 B
Bash
Executable File
#!/bin/sh
|
|
. $HOME/.bin/_config
|
|
if [ $# -gt 0 ]; then
|
|
$STERM -T "$@" -e ksh -ic "$1"
|
|
else
|
|
$STERM
|
|
fi
|