diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 08:29:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 08:29:11 +0000 |
commit | 1a0585f2312e8c00c4811bf1ebfc07c34a337c60 (patch) | |
tree | 267cffb022fc415f95a7505d84f04835eece3241 /debian | |
parent | Adding git prompt. (diff) | |
download | base-files-1a0585f2312e8c00c4811bf1ebfc07c34a337c60.tar.xz base-files-1a0585f2312e8c00c4811bf1ebfc07c34a337c60.zip |
Adding grep aliases.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/local/bash/profile.d/zz-grep.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/debian/local/bash/profile.d/zz-grep.sh b/debian/local/bash/profile.d/zz-grep.sh new file mode 100644 index 0000000..773e0f9 --- /dev/null +++ b/debian/local/bash/profile.d/zz-grep.sh @@ -0,0 +1,6 @@ +# /etc/profile.d/zz-grep.sh + +alias grep="grep --color=auto" +alias egrep="egrep --color=auto" +alias fgrep="fgrep --color=auto" +alias rgrep="rgrep --color=auto" |