symbolic link in linux command code example
Example 1: create symbolic link linux
$ ln -s file1 link1
#Example: ln -s /var/file_i_want_to_link /etc/symbolic_link_name
Example 2: 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