Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 09-19-2003, 09:17 PM   #1 (permalink)
Junkie
 
Location: RI
Linux Alias question

Hey guys.
Got a question, I'm playing around with my alias's and I have a ton that I'm going to need to add, but I was hoping that there was a way that I could edit the actual file. I seem to remember on my personal linux comp, the file for the alias thing was in your home dir, but I can't seem to find it there. Any idea where it might be? Thanks
btw, the place it's on is slackware 9, and other then that, I can't really tell ya because the guy who owns it won't tell us.
Fallon is offline  
Old 09-19-2003, 09:37 PM   #2 (permalink)
Insane
 
Location: Plugged In
If using bash, edit .bash_profile in your home dir.

Since it starts with ".", you won't see it without doing an ls -a

add:
alias aliasname=`command with full path`

Make sure to use backticks, not single quotes.
Boner is offline  
Old 09-19-2003, 10:38 PM   #3 (permalink)
Upright
 
Location: Within GMT+10
Boner:
When doing an alias, you don't want to use backticks. The use of backticks in a bourne based shell is to substitute the output of the command between the backticks in place of that string. I guess that makes no sense.

What I mean is if for example you had a command called foo, which does nothing than output "bar". Then if you aliased baz in the method that you specified, when you call baz it would try to call a command bar which may or may not exist. ie:
$ foo
bar
$ alias baz=`foo`
$ baz
bash: bar: command not found

You actually want to use single quotes or double quotes. ie:
$ ls
bar baz foo
$ alias ll='ls -l'
$ ll
total 0
-rw-r--r-- 1 dave dave 0 Sep 20 16:35 bar
-rw-r--r-- 1 dave dave 0 Sep 20 16:35 baz
-rw-r--r-- 1 dave dave 0 Sep 20 16:35 foo

Of course, this doesn't just apply to alias, but bourne derived shells in general (and most also applies to korn and c shells).

Hope that clarifies things.
Dave is offline  
Old 09-20-2003, 07:18 PM   #4 (permalink)
Insane
 
Location: Plugged In
Quote:
Originally posted by Dave
Boner:
When doing an alias, you don't want to use backticks.
Hi Dave,

You are obsolutely right. I'm sitting here wondering why the hell I wrote to use the backticks... I written a lot of bash scripts that use backticks to use command output, but for some reason my brain segfaulted and I wrote it all backerds.

Thanks for the catch!
Boner is offline  
Old 09-21-2003, 04:54 AM   #5 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
I like to keep aliases in a separate dotfile. It's cleaner from a logic standpoint. So I've got a lovely ~/.aliases file that gets sourced from ~/.bash_profile.

I'm something of an alias whore--I have aliases to log me into dozens of different SSH and remote MySQL servers, for instance--so a logical separation is very useful for me.
ratbastid is offline  
Old 09-21-2003, 07:36 PM   #6 (permalink)
Insane
 
Jolt's Avatar
 
Location: Over here
my ~/.cshrc calls a separate file ~/shellwreck (yes, bad pun) which by now has grown to over three kbytes in size.

tail -2 .cshrc
# This file is boring. let's read in an interesting one.
source ~/shellwreck

tail -2 shellwreck
#confirm reading of this file
echo Shell aliases enabled.

the external file is very nice when you add stuff at any given time...which I use things like this for...
alias vc 'vi ~/shellwreck'
alias .c 'source ~/shellwreck'
alias a alias
alias u unalias

I just about constantly hyper-optimize my workspace. most of my aliases are just one or two characters.

I started this alias file over ten years ago and have taken it with me from machine to machine...colleges, home, elsewhere...

btw...Have any of you bash users got a prompt string half as useful as "%{^[[46;30m%}%m%{^[[m%} %{^[[36;1m%}%l%{^
%{^[[30;44m%}%@%{^[[m%}%{^[[30;47m%}%h%{^[[37;40m%} " ?
Jolt is offline  
Old 09-22-2003, 03:37 PM   #7 (permalink)
Irresponsible
 
yotta's Avatar
 
Quote:
Originally posted by Jolt
btw...Have any of you bash users got a prompt string half as useful as "%{^[[46;30m%}%m%{^[[m%} %{^[[36;1m%}%l%{^
%{^[[30;44m%}%@%{^[[m%}%{^[[30;47m%}%h%{^[[37;40m%} " ?
\[\033[${PROMPT_COLOR1}m\][\[\033[${PROMPT_COLOR2}m\]\u@\h\[\033[${PROMPT_COLOR1
}m\]]\[\033[${PROMPT_COLOR3}m\]-\[\033[${PROMPT_COLOR1}m\][\[\033[${PROMPT_COLOR
2}m\]pts/3\[\033[${PROMPT_COLOR1}m\]]\[\033[${PROMPT_COLOR3}m\]-\[\033[${PROMPT_
COLOR1}m\]\[\033[${PROMPT_COLOR1}m\][\[\033[${PROMPT_COLOR2}m\]\w\[\033[${PROMPT
_COLOR1}m\]]\[\033[0m\]\n\[\033[1;36m\][\[\033[0;36m\]0\[\033[1;36m\]\[\033[1;36
m\]]\[\033[1;37m\]\[\033[0m\]$\[\033[0m\]
__________________
I am Jack's signature.
yotta is offline  
 

Tags
alias, linux, question


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 01:31 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62