My first open source contribution
State:
I use tmux since not that long ago, but managing my sessions became very painful fast. Bart has already created this tool: tmux-session.
Problem:
It did not listed my symlinked directories. (I use WLS2 and symlink directories from Windows so I can work on my files in both environments.)
After a bit of digging in the man pages for find(1) I was able to locate the missing link.
Solution:
Adding -L
to the find
command in the shell script sets the option to follow symbolic links.