I can create an alias in solaris as below:
alias x86 "some_command"
I need something that i can pass an argument to an alias and that argument will be used to frame the complete alias. for example:
there is a command like :
ct setview 1.0_myname
and for the above i write the alias as
alias sv "ct setview 1.0_myname"
in the above command 1.0 is the version and it can keep changing.
so what i want is to create an alias like :
alias sv "ct steview $1_myname"#well i donno whether this is correct
and i want to use this alias as
sv 1.0
or sv 2.0