5 lines
137 B
Bash
Executable File
5 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
FILE=/data/documents/verpleegsterstraat-249/meterstanden.csv
|
|
sed -i '${p;s/.*,/'"$(date --iso)"',/}' "$FILE"
|
|
"$EDITOR" "$FILE"
|