Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

alias Command and Bourne 2

Status
Not open for further replies.

Michael42

Programmer
Oct 8, 2001
1,454
US
Hello,

Is the alias command available in the Bourne shell?

If so, can some give a Bourne .profile shell example alias entry?

Thanks,

Michael42
 
I don't believe it is, but you can use a function instead.

Code:
ll() {
        ls -l
}

Annihilannic.
 
The Bourne Shell has no alias builtin command.
You may consider a function instead.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top