diff options
author | Christian Segundo | 2023-12-20 14:46:47 +0100 |
---|---|---|
committer | Christian Segundo | 2023-12-20 14:46:47 +0100 |
commit | 651a3f8956104265c197a1155704600aa0bb5bf8 (patch) | |
tree | 77ce42928f27be46976b744453c944d82a14cb66 /public/zsh | |
parent | e4d716ba84f62e83a553e22690868a31cea00a98 (diff) | |
download | dotfiles-651a3f8956104265c197a1155704600aa0bb5bf8.tar.gz |
add grep & date gnu wrappers
Diffstat (limited to 'public/zsh')
-rwxr-xr-x | public/zsh/.usr/local/bin/date | 2 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/grep | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/public/zsh/.usr/local/bin/date b/public/zsh/.usr/local/bin/date new file mode 100755 index 0000000..0a50c4e --- /dev/null +++ b/public/zsh/.usr/local/bin/date @@ -0,0 +1,2 @@ +#!/bin/bash +gdate "$@" diff --git a/public/zsh/.usr/local/bin/grep b/public/zsh/.usr/local/bin/grep new file mode 100755 index 0000000..e950d06 --- /dev/null +++ b/public/zsh/.usr/local/bin/grep @@ -0,0 +1,2 @@ +#!/bin/bash +ggrep "$@" |