1
0
Fork 0
dotfiles/.local/bin/scripts/vix
2026-01-06 07:36:53 +03:00

7 lines
99 B
Bash
Executable file

#!/bin/sh
[ -z "$1" ] && echo 'Missing filename!' >&2 && exit 1
touch "$1"
chmod +x "$1"
vi "$1"