11 lines
128 B
Bash
Executable file
11 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
|
|
suffix="$1"
|
|
datef="$2"
|
|
|
|
file=$(date +%Y-%m-%d $datef)
|
|
|
|
set -x
|
|
|
|
# $EDITOR "${file}${suffix}"
|
|
emacs "${file}${suffix}"
|