So "cs" will be mapped to "/College/" so that I can run the command "cd cs"?
相关问题
- Why should we check WIFEXITED after wait in order
- UNIX Bash - Removing double quotes from specific s
- bash delete line condition
- Trying to make a permanent Alias - UNIX
- extern alias with same assembly file name
相关文章
- Making new files automatically executable?
- Reverse four length of letters with sed in unix
- Compile and build with single command line Java (L
- Extracting columns from text file using Perl one-l
- Problem with piping commands in C
- Makefile and use of $$
- Convert ls output into csv
- Unix FIFO in go?
I believe you are asking about how to create a symbolic link (or symlink) like:
Although, there are other ways to speed up your workflow, such as setting the CDPATH:
Or you could even make "cs" an alias that will perform the action "cd /College/":
If you did the above, you would type
cs
instead ofcd cs
to get there.See also