I was wondering if it is possible to make a \"link\" in usr/bin (i.e.) that leads to a shell-script.
But I want just to write
% shellscript
Yes. You can use ln to create a link to shellscript.sh named shellscript. You will then need to make it executable, but after that (assuming /usr/bin is on your path) you can run it with shellscript.
ln
shellscript.sh
shellscript
/usr/bin