Last active
December 10, 2015 16:48
-
-
Save sleexyz/4463240 to your computer and use it in GitHub Desktop.
Simple mounting script for Phillips Exeter Academy's webfolders using wdfs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
EXPECTED_ARGS=1 | |
if [ $# -ne $EXPECTED_ARGS ] | |
then | |
echo "Usage: $0 directory" | |
exit 1 | |
fi | |
wdfs https://webfolders.exeter.edu/$1 ~/.mount/$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment