10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
PATH=.:$PATH
|
||
|
|
||
|
if [ "$1" == "--version" ]; then
|
||
|
sshfs $@ 2>&1 | grep SSHFS | tr [:upper:] [:lower:]
|
||
|
else
|
||
|
sshfs $@ 2>&1
|
||
|
fi
|