6 lines
71 B
Bash
6 lines
71 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cp "$1" "$1".md
|
||
|
alacritty -e nvim "$1".md
|
||
|
mv "$1".md "$1"
|