Aug 1, 2005 #1 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
Hello, Is the alias command available in the Bourne shell? If so, can some give a Bourne .profile shell example alias entry? Thanks, Michael42
Aug 1, 2005 1 #2 Annihilannic MIS Jun 22, 2000 6,317 AU I don't believe it is, but you can use a function instead. Code: ll() { ls -l } Annihilannic. Upvote 0 Downvote
Aug 1, 2005 1 #3 PHV MIS Nov 8, 2002 53,708 FR 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 Upvote 0 Downvote
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
Aug 1, 2005 Thread starter #4 Michael42 Programmer Oct 8, 2001 1,454 US Guys thanks for the post - perfect! Upvote 0 Downvote