8 lines
134 B
Bash
Executable file
8 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
git pull
|
|
|
|
printf "name of file (e.g. day67.md): "
|
|
read filename
|
|
cargo run -- new > blogs/$filename
|
|
$EDITOR blogs/$filename
|
|
|