![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| man aliases | Pipa | UNIX for Dummies Questions & Answers | 2 | 09-19-2007 03:55 AM |
| retireving ip aliases | caltiger | High Level Programming | 2 | 09-15-2006 10:36 PM |
| aliases | BG_JrAdmin | UNIX for Dummies Questions & Answers | 1 | 11-30-2005 08:53 PM |
| aliases | mluey61 | High Level Programming | 1 | 04-19-2005 08:30 AM |
| Sendmail / Aliases | ComTec | UNIX for Dummies Questions & Answers | 1 | 03-17-2001 02:35 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
adding a new alias to Aliases
when we invoke a line we write
alias aliasname " " but i have on the original line "specific string" so it must be alias aliasname " "specific string" " and it cause me trouble what can i do ? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
alias is normally a command, not a quoted string..? try
Code:
alias aliasname="\"specific string\"" Code:
aliasname='"specific string"' |
|
#3
|
|||
|
|||
|
i ment something like this
alias mine "/.../xsimphone 'name of phone' -f "
i think the ' ' string prevent me to run this alias |
|
#4
|
|||
|
|||
|
Code:
alias mine='/.../xsimphone "name of phone" -f ' |
|
#5
|
|||
|
|||
|
I will be happy if you can elaborate your explanation
|
|
#6
|
|||
|
|||
|
see the example - it is what you gave with different placement of ' and " characters
|
|||
| Google The UNIX and Linux Forums |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|