Mar 11, 2002 #1 plcramer MIS Mar 11, 2002 5 US I have a long path that I need to inculude as an 8 character or less substitute. Is there some kind of "alias" command?
I have a long path that I need to inculude as an 8 character or less substitute. Is there some kind of "alias" command?
Mar 11, 2002 #2 bi Technical User Apr 13, 2001 1,552 US Have you tried creating the 8 character directory and using ln -s to create a link? For example: /this/is/the/long/path/to/a/directory /shortnam ln -s /this/is/the/long/path/to/a/directory /shortnam Upvote 0 Downvote
Have you tried creating the 8 character directory and using ln -s to create a link? For example: /this/is/the/long/path/to/a/directory /shortnam ln -s /this/is/the/long/path/to/a/directory /shortnam
Mar 11, 2002 #3 dalexander Technical User Feb 25, 2002 7 US Or try using the alias command : alias short=/this/is/the/long/path/name You can put that line in your ~.profile file as well... Upvote 0 Downvote
Or try using the alias command : alias short=/this/is/the/long/path/name You can put that line in your ~.profile file as well...
Mar 12, 2002 Thread starter #4 plcramer MIS Mar 11, 2002 5 US Thanks, both of you for the assistance! Upvote 0 Downvote