blob: 4a90d3adedcb81abb5f3268f76c5cec9d2eee9eb (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env dwvsh
# Alias the grep command
alias grep='grep --color=always'
# Alias the which command
alias which='alias | /usr/bin/which --tty-only --read-alias --show-tilde --show-dot'
|