linux what are symbolic links code example
Example 1: linux symbolic link
ln -s <file/folder to be linked> <path of the link to be created>
ln -s /home/james/transactions.txt trans.txt
Example 2: unix symbolic link
ln -s source_file myfile
ln -s <file/folder to be linked> <path of the link to be created>
ln -s /home/james/transactions.txt trans.txt
ln -s source_file myfile