Alias

how implement functionality alias in the same way as in csh? (use Bourne type sh or bash)

If you're talking about using positional parameters within an alias, define a function instead.

e.g.

function something {
  do_something $1 $2 | something_else
}

Cheers
ZB

No. i want to make a program in bash, where implement functionality alias in the same way as in csh, but i don�t know how to do it

Tks

It might be clearer if you give the csh example that you would like to port to bash....

Cheers
ZB