Files
environment/scripts/xvim
2025-09-15 09:42:08 +02:00

11 lines
109 B
Bash
Executable File

#!/bin/sh
if [ -n "$1" ]; then
touch "$1"
chmod +x "$1"
vim "$1"
else
echo "No file specified"
exit
fi