Added vic script

This commit is contained in:
2021-12-28 16:47:34 -05:00
parent f9892ee952
commit 28c02229b8
2 changed files with 7 additions and 2 deletions

5
scripts/.local/scripts/vic Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
# opens a shell command in vi
cmd=$(command -v $1)
test -n "$cmd" && vi "$cmd"