summaryrefslogtreecommitdiff
path: root/.local/bin/workfs
blob: d099dea62216c09de95a5a8236d7fa3f0134ba4c (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
dir="$HOME/workfs"
if [ -d "$dir" ]
then
    fusermount -u "$dir"
    rmdir "$dir"
else
    mkdir -p "$dir"
    sshfs "$WORKSSH:/Users/$USER" "$dir"
fi