scripts/ns

14 lines
187 B
Plaintext
Raw Normal View History

2024-12-25 21:14:35 +01:00
#!/bin/sh
if [ $# -ne 1 ]; then
echo "Provide a script name"
exit 1
else
name="$1"
fi
touch "$name"
chmod +x "$name"
echo "#!/bin/sh" > "$name"
nvim "+ normal Gzzo" "$name"