blob: 972b329930b4bbc4eddb4e0da7adc017ad4723f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
host="192.168.0.10";
mount_dir=~/Downloads/shared;
user=artemis;
pass=$(pass show Artemis/smb.artemis);
sudo mount -t cifs //$host/public $mount_dir -o rw,username=$user,password=$pass;
|