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