Skip to content

Instantly share code, notes, and snippets.

View diegoscl's full-sized avatar
😎

Diego Belmar diegoscl

😎
View GitHub Profile
@diegoscl
diegoscl / mount-smb-backup
Last active July 24, 2019 22:02
[macOS] Mount a SMB share
#!/bin/bash
# Use applescript to auto-mount a SMB share in /Volumes and save password in Keychain.
# Source: https://apple.stackexchange.com/a/303595
osascript <<EOF
mount volume "smb://USER@SERVER/SHARE"
EOF