SyntaxFix
Write A Post
Hire A Developer
Questions
if you want to kill all mounted sshfs connections you can use this. I tried it with ubuntu.
ps -ef | grep "sshfs" | awk '{print $2}' | xargs kill -9
I added it to bash_aliases