forked from ungleich-public/ccollect
16 lines
164 B
Bash
16 lines
164 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
host="home.schottelius.org"
|
||
|
|
||
|
pcmd()
|
||
|
{
|
||
|
if [ "$host" ]; then
|
||
|
ssh "$host" "$@"
|
||
|
else
|
||
|
"$@"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
pcmd ls /
|
||
|
pcmd cd /; ls "/is not there"
|