define a link;
$ ln -s myfolder/myfile.txt myshortcut
to see it in the list;
$ find . -type l -ls
result;
Jan 21 09:03 ./myshortcut-> myfolder/myfile.txt
to see inside of file via shortcut;
$ cat myshortcut
hello
$ ln -s myfolder/myfile.txt myshortcut
to see it in the list;
$ find . -type l -ls
result;
Jan 21 09:03 ./myshortcut-> myfolder/myfile.txt
to see inside of file via shortcut;
$ cat myshortcut
hello