# Backup-Baum ohne Lock mounten
restic -r /backupdisk/restic-repo -p /root/resticpw --no-lock mount /mnt/restic-restore
# restic mount prozess finden
ps auxw | grep restic | grep mount | awk '{print $2}'
# restic mount prozess killen
kill $(ps auxw | grep restic | grep mount | awk '{print $2}')