flatten out a folder hierarchy in another location
/mnt/data/SYS/scripts
/mnt/data/SYS/scripts/scripts.bash/
open thunar
==> not found (yet) ==> use nemo instead
open terminal in thunar WD :
https://github.com/ganiserb/thunar-terminal
modify path in linux
==>
e is ~/.profile for your per-user PATH setting or /etc/profile for global settings.
export PATH=$PATH:/your/new/path/here
I have a directory called .bash.d in my $HOME and within that I keep a set of shell scripts that do stuff to my environment (for instance setup maven correctly, modify the path, set my prompt etc.). I keep this under version control by using git, which makes it easy to go back to a working version of your env, if you screw something up badly. To get all the modifications, I simply source all files in that dir at the end of my .bashrc like this:
for i in $HOME/.bash.d/*; do source $i; done
unset i
This gives you a very flexible environment that you can easily modify and restore + you are able to export it to other machines just by using git.