How to stop fusermount all?

path rclone mount :::
/mnt/stuff/td1
/mnt/stuff/td2
/mnt/stuff/td3
/mnt/stuff/td4
/mnt/stuff/td5

I need use fusermount stop all one command.

Thanks for help. :heart_eyes: :heart_eyes: :heart_eyes:

Something like this should do it!

for i in $(mount | grep rclone | cut -d' ' -f 3); do fusermount -z -u $i ; done
1 Like

Thank you so much. :grin:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.