I was wondering whether there is a way in the linux shell to type the first unique part of a filename or dirname and then add "~" or "..." and avoid writing the entire filename.
For example if I have to cd to the directory
example-program-source-0.11.229-dev
Instead of writing
cd example-program-source-0.11.229-dev
Just to write something like that
cd example-program...
Or
cd example-program~
I think there should be something like that integrated in shell, but I don't know what to search for exactly.
Thanks a lot!