Skip to content

Instantly share code, notes, and snippets.

@sleexyz
Last active December 10, 2015 16:48
Show Gist options
  • Save sleexyz/4463240 to your computer and use it in GitHub Desktop.
Save sleexyz/4463240 to your computer and use it in GitHub Desktop.
Simple mounting script for Phillips Exeter Academy's webfolders using wdfs
#!/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