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