#!/bin/bash
echo -n "IDENT PARTAGE: " set ident= $< stty -echo; # stty -echo pour rendre invisible la saisit du mdp stocké dans $ident
echo -n "Mdp PARTAGE: " set mdp= $< stty echo; # pareil pour le mdp et on "rallume" la saisi avec stty echo
mount.cifs //192.168.0.2/partage /media/partage -o user=$ident,password=$mdp,rw;
mount.cifs //192.168.0.2/spin /media/spin -o user=$ident,password=$mdp,rw;
./mount_partage.sh: line 3: stty: Aucun fichier ou répertoire de ce type
./mount_partage.sh: line 4: stty: Aucun fichier ou répertoire de ce type
It looks like you're new here. If you want to get involved, click one of these buttons!