alias - How can I quickly create aliases with absolute paths? -


I often make a mistake in making a nickname:

  ln -S $ personal / books $ Instead, I would write the whole path to make the last command work:  
  ln -s / users / user /something/.../Books/Users/user/something/ ../Books (2)  

I really like to do something like working (1) It will be very good to do so (2) How fast can I make the perfect path for nicknames?

I use path personal and There are both directories in your home directory. You can then type a relative symlink by typing

  cd ln -s ../Personal/Books Books  

Comments