Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You can, it's just a matter of knowing how to write a function for your shell.


Exactly.

ls example in zsh:

  alias ls="ls -lph1 --color=always"

  function ls {
    /bin/ls $@ | colout [regex] colours
  }
This will pass all arguments after "ls" to the /bin/ls command. This also means you can keep your existing aliases clean and tidy for common params.

Remember to use the full path (or /usr/bin/env maybe) so that you don't create a recursive call to your function ;)

This doesn't deal with the situation of being unable to get the return value of the original command, but depending on your needs, this may not be an issue.

(edited for spacing)


I was referring to the exit code problem. Is it solvable?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: