blob: e74894150dae5e0865657c1dc892f070fef0f379 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
# Uses sshfs to locally mount media directories
# Check if the media computer is reachable and if so mount the media
ping -W 0.01 -c 1 prometheus >/dev/null && \
sshfs sisko@prometheus:/mnt/raid/media/ $HOME/media/prometheus/
|