Cleanup aliases and move functions to .local/bin
This commit is contained in:
parent
0474b35031
commit
f1594b3cbb
5 changed files with 12 additions and 13 deletions
.local/bin
3
.local/bin/gpg2-decrypt
Executable file
3
.local/bin/gpg2-decrypt
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
gpg2 --output ${1%".gpg"} --decrypt $1
|
3
.local/bin/gpg2-encrypt
Executable file
3
.local/bin/gpg2-encrypt
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
gpg2 --output $1.gpg --encrypt $1
|
3
.local/bin/vim-find
Executable file
3
.local/bin/vim-find
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
vim $(find $@)
|
3
.local/bin/vim-grep
Executable file
3
.local/bin/vim-grep
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
vim $(grep $@)
|
Loading…
Add table
Add a link
Reference in a new issue