]> git.sev.monster Git - dotfiles.git/commitdiff
zshrc: add grep and zutils aliases
authorsev <git@sev.monster>
Fri, 19 Jul 2024 19:16:09 +0000 (14:16 -0500)
committersev <git@sev.monster>
Fri, 19 Jul 2024 19:22:30 +0000 (14:22 -0500)
etc/zsh/.zshrc

index 229ade90e56cf27aa0510b637652a83aa7a1c135..da694128d5a71b2be531ff9f13417f77d5b3dff8 100644 (file)
@@ -216,6 +216,13 @@ alias p=\$PAGER
 alias e=\$EDITOR
 alias se=sudoedit
 alias syncwatch='sync & watch -d grep -Fe Dirty: -e Writeback: /proc/meminfo'
+if [[ -v commands[grep] ]] {
+    [[ -v commands[fgrep] ]] || alias fgrep='grep -F'
+    [[ -v commands[egrep] ]] || alias fgrep='grep -E'
+}
+for x (cat cmp diff grep test update) {
+    [[ -v commands[zutils-z$x] ]] || alias z$x=zutils-z$x
+}
 # be paranoid
 alias cp='cp -ip'
 alias mv='mv -i'
This page took 0.031325 seconds and 4 git commands to generate.