Alias Usuage


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Alias Usuage
# 1  
Old 10-16-2009
Alias Usuage

Hi All

I am new to the Unix World.I have question about alias.I learnt that alias allows to have a small more familiar command or name to execute a long string.I understand that I use C shell command and emacs editor

I tried editing the .cshrc.common file in order to set my environment variables .Since I often have to open the file .cshrc.common in emacs editor.I tried setting a alias name

alias environ '.cshrc.common'

When I gave the command emacs environ, a new file called environ is opened in the emacs editor.How do i make unix understand that

"emacs environ" command is similar to "emacs .cshrc.common"

Is this a right approach?any help plz
# 2  
Old 10-16-2009
If you are new to the Unix world, you have absolutely no good reason to use csh. Switch to a compliant one like ksh or bash.

About emacs, be aware that vi (and its clones) are much more mainstream with Unix.
# 3  
Old 10-16-2009
As i've always understood alias is used to shorten commands and their arguments (which may include files), but not for the purpose of renaming files. You can rename the file but i would not advise of this because it will likely be bypassed by whatever binary looks for it upon init.
# 4  
Old 10-16-2009
you could alias any command you like, by just doing something like this:
Code:
# alias qqq="ls -la"

# 5  
Old 10-19-2009
Thanks a lot !
# 6  
Old 10-19-2009
Not sure about who you are thanking but the alias command suggested by masloff doesn't work as is with csh.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need Generic command for Memory usuage on Linux and Solaris

Hi, I m using the below commands to find out the RAM and SWAP Memory usage on Linux. free -m while I m using the below for Solaris prstat -cZ 1 1 Is there a generic command that I can used for both Linux and Solaris to get RAM and SWAP memory usage ? (3 Replies)
Discussion started by: mohtashims
3 Replies

2. Shell Programming and Scripting

Alias help

I am creating subversion pre commit hook on linux to run on client side but its not working and throwing an error - alias svnbi="plutil *.plist|grep -v OK; if ; then svn ci -m $1 ; fi" but when I run - (test is $1 here) svnbi test bash: syntax error near unexpected token `test' ... (1 Reply)
Discussion started by: jacki
1 Replies

3. UNIX for Dummies Questions & Answers

. and / usuage

From what I have read . is for current director and the / represents directory. So I have a file hello.c in order to run that file I have to type ./hello which is a compiled C program. If I put a space after the ./ I recieve ./ is a directory. However if I use the cp command cp... (2 Replies)
Discussion started by: Fingerz
2 Replies

4. UNIX for Dummies Questions & Answers

Create alias files (not alias commands)

If one: $ find -name 'some expression' -type f > newfile and then subsequently wants to create an alias file from each pathname the find command retrieved and the > placed within 'newfile', how would one do this? Ideally, the newly created alias files would all be in one directory. I am... (3 Replies)
Discussion started by: Alexander4444
3 Replies

5. Solaris

Memory usuage per zone in solaris

Hello all, How can i find the memory usuage per zone in solaris. (5 Replies)
Discussion started by: sophos
5 Replies

6. UNIX for Dummies Questions & Answers

alias help

Hello again, what does \!* do int his line alias lookup 'grep -i \!* who.is.who' Thanks! (1 Reply)
Discussion started by: kris888
1 Replies

7. HP-UX

monitor memory usuage

Hi, We have HP-UX 11.23 and i want to use glance utility to monitor the memory usuage. Can someone tell me how to sort by memory usuage in glance utility? Thx (1 Reply)
Discussion started by: rockcapri
1 Replies

8. Shell Programming and Scripting

awk usuage

can any1 guide me on simple awk to do extraction and calculation? like for example if got data in 123.data how to i extract and sort the data giving my values like: don,waiter,FnB,1500 mary,waitress,FnB,1500 alex,manager,hotel,2500 leo,ast manager,hotel,2000 how do i use this command to do... (1 Reply)
Discussion started by: crunchyuser
1 Replies

9. UNIX for Dummies Questions & Answers

How to get the alias,when we have the IP.

Hi, I have to set up a printer in the system.Generally the alias is given like sdclbl1 etc.So when I ping i get the IP address. This time they have provided the IP adress.Is there any way to find the alias from this.Ping did not give the alias. Thanks and Regards, Gideon. (2 Replies)
Discussion started by: preethgideon
2 Replies

10. HP-UX

alias help

i want to use short cut alias command but its not happening can any on help (4 Replies)
Discussion started by: shafique
4 Replies
Login or Register to Ask a Question