How to make Alias?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to make Alias?
# 15  
Old 02-02-2012
1. Please do not haste. That is not the great way of Unix.
2. Did you check the contents of /etc/bashrc ? What does it say? Is it invoking any of the .sh files from /etc/profile.d/ ?
3. Going by your previous posts in this thread I'm assuming there's no .bashrc file in your home dir. We've to go through all this trouble because it's not there. Please check again if there's a .bashrc file in your home dir. ls -l $HOME/.bashrc
4. Please read all the points and answer/comment accordingly.
# 16  
Old 02-02-2012
yes my etc folder contains bashrc which contains the same code which u have mentioned earlier i.e

Code:
    for i in /etc/profile.d/*.sh; do
        if [ -r "$i" ]; then
            . $i
        fi
    done

also tried below code

Code:
[user01@vm02 ~]$ $HOME/.bashrc
-bash: /home/user01/.bashrc: Permission denied


Last edited by aish11; 02-02-2012 at 05:23 AM..
# 17  
Old 02-02-2012
Ok then add alias hr='cd /home/hmi/bin/Log' in any of the .sh files. Search in the .sh files if there are other aliases defined. If so, append this to that list. This is just for brevity, so that you can have a collated list of aliases in one single file.

Restart your system and check if it has taken effect.
# 18  
Old 06-18-2012
hi there,

i'm trying to create an alias in .bashrc so when i type hi it would how are you...

i'm exploring the combination of alias and echo command...

Code:
alias hi=' echo "\"alias hi\" how are you."'  <--- doesn't take...

preciate the help.

Last edited by Scrutinizer; 06-18-2012 at 02:42 PM.. Reason: code tags
# 19  
Old 06-19-2012
Code:
$ alias hi="echo \"how are you\""
$ hi
how are you
$

# 20  
Old 06-19-2012
$ hi
-bash: hi: command not found <---- still not displaying...

any clue why? i type you code exactly.

---------- Post updated at 12:56 AM ---------- Previous update was at 12:48 AM ----------

balajesuri, thank you very much, works great... i need to remember that linux is case sensitive... thanks for the tutorial
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. Programming

Issue with make, no rule to make target etc.

I have been trying to split up my src directory to clear out files that are not re-compiled very often. Now I have the following setup in my trunk, trunk/bld trunk/src/ trunk/src/src_server trunk/makefile.linux In the make file, I have compile rules SOURCELOC = src # compile src c++... (4 Replies)
Discussion started by: LMHmedchem
4 Replies

3. UNIX for Dummies Questions & Answers

How to make delays between multiple commands in an alias (ircII)?

Okay so I have an alias that looks like this: ALIAS gscn { MSG gscn Test1 MSG gscn Test2 MSG gscn Test3 MSG gscn Test4 MSG gscn Test5 } How do I make it wait 5 seconds between each command before it executes the next one after that in order from top to bottom? I tried the TIMER... (1 Reply)
Discussion started by: guitarscn
1 Replies

4. UNIX for Dummies Questions & Answers

Difference between configure/make/make install.

Hi, While installation of apache on linux, we perform the below tasks. 1) Untar 2) configure 3) make 4) make install. I wanted to understand the difference and working of configure/make/make install. Can any one help me understanding this? Thanks in advance. (1 Reply)
Discussion started by: praveen_b744
1 Replies

5. UNIX for Dummies Questions & Answers

How to make a make from other folder

Hi, Sorry for my English. I want Execute a make from other folder but no it's a normal make. The comand is: make telosb install,3 And for example if i have to execute this comand in /tmp and i am in /$HOME how he would be now the comand? thx (7 Replies)
Discussion started by: Grobix
7 Replies

6. Solaris

Gani Network Driver Won't Install - make: Fatal error: Don't know how to make targ...

I attached a README file that I will refer to. I successfully completed everything in the README file until step 4. # pwd /gani/gani-2.4.4 # ls COPYING Makefile.macros gem.c Makefile Makefile.sparc_gcc gem.h Makefile.amd64_gcc ... (1 Reply)
Discussion started by: Bradj47
1 Replies

7. UNIX for Dummies Questions & Answers

How to make alias for start of next sessiones

Good morning Dear Friends Please tell me how can be don't alias which is not Temporary.I mean in next log it to be there specially for AIX and HP UNIX.Thanks in advance. (0 Replies)
Discussion started by: papa1980
0 Replies

8. Linux

Error in issuing a make and make install

Hi, Recently I install a package and try to do a make and make install. However, in the make it gives me below error:- make:Nothing to be done for 'install-exec-am' make:Nothing to be done for 'install-data-am' Can anyone please explain to me what does this mean? I have been trying... (1 Reply)
Discussion started by: ahjiefreak
1 Replies

9. Shell Programming and Scripting

How to make Alias

Dear all, I'm new in unix systm , I try to write alias script: alias hr= cd/home/hmi/bin/Log and this work, but when i quit from unix and login again, this can't work again. how to create alias that can work anytime thank you Regards Heru (1 Reply)
Discussion started by: heru_90
1 Replies

10. UNIX for Dummies Questions & Answers

make and make install commands

Hi there, I am installing a package at the moment on to my Solaris version 8 and I have run into a problem with the 'make' command. I have installed the package using the 'pkgadd' command and I am now at the stage where I have to use the 'make' command followed by the 'make install'... (4 Replies)
Discussion started by: gerwhelan
4 Replies
Login or Register to Ask a Question