https://github.com/mitchcapper/which_new
https://github.com/mitchcapper/which_new
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mitchcapper/which_new
- Owner: mitchcapper
- License: gpl-3.0
- Created: 2025-01-12T10:33:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-13T13:04:03.000Z (over 1 year ago)
- Last Synced: 2025-10-17T14:15:30.564Z (8 months ago)
- Language: C
- Size: 276 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.alias
- Changelog: NEWS
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
If you want `which' to inform you about aliases and shell functions in bash,
then you need to add the following five lines to your $HOME/.bash_profile:
function which ()
{
(alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-dot --show-tilde $@
}
export -f which
This is the recommended use of this `which'.
The C shell (csh, tcsh) doesn't have shell functions, but fortunately
inherites aliases in subshells. To support aliases with a C shell add
the following line to your .profile:
alias which 'alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'