Files
environment/scripts/xvim

11 lines
109 B
Plaintext
Raw Normal View History

2025-09-15 09:42:08 +02:00
#!/bin/sh
if [ -n "$1" ]; then
touch "$1"
chmod +x "$1"
vim "$1"
else
echo "No file specified"
exit
fi