Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-23-2004, 10:51 PM
|
#1
|
LQ Newbie
Registered: Nov 2004
Distribution: Mandrake/Knoppix
Posts: 24
Rep:
|
Making bash shortcuts, like ~ for Home
~ in bash is a shortcut for /home. How can I make others?
For example, I have a text file called phone.txt. Instead of things like "/mnt/hda2/txt/phone.txt", can I just type "ph"? (I know it's an odd question, but I want to have it so I can just enter "grep ph Melissa" and have it print "Melissa - 1234 5678".)
|
|
|
12-23-2004, 11:00 PM
|
#2
|
LQ Guru
Registered: Feb 2003
Location: Colorado Springs, CO
Distribution: Gentoo
Posts: 2,018
Rep:
|
The tilde shorthand notation is built-in to bash, so you can't really create equivalents to that, but you can use aliases, like this:
alias ph="/mnt/hda2/txt/phone.txt"
This only works for executable files, as far as I know. For normal files, though, you might just create a symbolic link to the file you want to use, like this:
ln -s /mnt/hda2/txt/phone.txt ~/ph
That'll create a file called 'ph' in your home directory that links directly to /mnt/hda2/txt/phone.txt. Then you can do things like 'grep Melissa ~/ph'.
|
|
|
12-24-2004, 12:00 AM
|
#3
|
Member
Registered: Apr 2004
Location: India
Distribution: Ubuntu
Posts: 364
Rep:
|
You can make simple shellscripts to do the task for you. I am not skilled in making shellscripts, but I have a few shellscripts that I use as "shortcuts".
Last edited by akudewan; 12-24-2004 at 12:02 AM.
|
|
|
12-24-2004, 03:26 PM
|
#4
|
LQ Newbie
Registered: Oct 2003
Posts: 25
Rep:
|
or you can make a shortcut by adding /etc/bashrc
vi /etc/bashrs -- > then add
alias not useful if your system not up all the time cause when you reboot you have to add all your shortcuts again
thanks
|
|
|
12-24-2004, 03:53 PM
|
#5
|
LQ Newbie
Registered: Apr 2004
Posts: 20
Rep:
|
you can create an environment variable for this.
from the shell you can type the following
export ph=/mnt/hda2/txt/phone.txt
now your grep command will look something like this:
grep $ph Melissa
you could also create an alias for the above grep command
alias phone='grep -i $ph'
then, if you wanted to lookup melissa's phone number you could do the following
phone melissa
-rhett
|
|
|
12-24-2004, 04:28 PM
|
#6
|
LQ Newbie
Registered: Oct 2003
Posts: 25
Rep:
|
nice answer
Last edited by C0NIk; 12-24-2004 at 04:31 PM.
|
|
|
All times are GMT -5. The time now is 10:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|