I have separate directories for uni courses, which are grouped in semester directory. I also TA some classes, which is stored in separate folder named ‘TA’. That is, it is grouped like this:
University
| - ...
| - 2024.2
| | - Lie algebra
| | - Operator algebra
| - 2025.1
| | - Mathematical Algorithms
| | - Diophantine equations
| - TA
| | - ...
| | - 2024.2
| | - 2025.1
Oftentimes, I focus on the current semester, so I want to view courses on a same semester grouped together. On other times, I want to group TA activities across semesters together to . I may also do the same with grouping similar subjects.
Basically, I want to view directories with different grouping for each use case, as in the title. I hope this makes sense… Is there any kind of directory structure or application-based solutions for this cases?
EDIT: I want both GUI and TUI solution for browsing files like this, it’s great if linux filesystem supports this natively but fine if it doesn’t. Database with redirection capability would be even better.
Thanks in advance!
I hope it works for you!
In the worst hypothesis, if tmsu doesn’t work for your needs, then @deegeese@sopuli.xyz’s idea (parallel directory tree with symlinks) sounds solid. Or even flattening the directory tree that you already use, like:
University | - ... | - 2024.2 Lie algebra | - 2024.2 Operator algebra | - 2024.2 TA activities | - 2025.1 Mathematical Algorithms | - 2025.1 Diophantine equations | - 2025.1 TA activities
This way if you want to find e.g. all dirs with TA, you just Ctrl+F “TA activities” and it’ll show you both “./2024.2 TA activities” and “./2025.1 TA activities”.
That’s smart, thx