aboutsummaryrefslogtreecommitdiff
path: root/_tils/2020-08-12-simple-filname-timestamp.md
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-31 11:54:07 -0300
committerEuAndreh <eu@euandre.org>2020-08-31 11:54:07 -0300
commit038f5713b8ca9dce79e17ac85e57ad1ce2644e09 (patch)
tree29d8e2cc23715028390484c6f85e7310ed4a5859 /_tils/2020-08-12-simple-filname-timestamp.md
parentAdd missing timestamp on database post (diff)
downloadeuandre.org-038f5713b8ca9dce79e17ac85e57ad1ce2644e09.tar.gz
euandre.org-038f5713b8ca9dce79e17ac85e57ad1ce2644e09.tar.xz
Add spellchecking back to tests, with support for en, pt and fr dicts
Diffstat (limited to '')
-rw-r--r--_tils/2020-08-12-simple-filname-timestamp.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/_tils/2020-08-12-simple-filname-timestamp.md b/_tils/2020-08-12-simple-filname-timestamp.md
index 7c112ff..2678088 100644
--- a/_tils/2020-08-12-simple-filname-timestamp.md
+++ b/_tils/2020-08-12-simple-filname-timestamp.md
@@ -5,7 +5,7 @@ layout: til
lang: en
ref: simple-filename-timestamp
---
-When writing Jekyll posts or creating logfiles with dates on them, I usually
+When writing Jekyll posts or creating log files with dates on them, I usually
struggle with finding a direct way of accomplishing that. There's a simple
solution: `date -I`.
@@ -14,7 +14,7 @@ solution: `date -I`.
cp post-template.md _posts/$(date -I)-post-slug.md
```
-Using this built-in GNU/Linux tool allows you to `touch $(date -I).md` to readly
+Using this built-in GNU/Linux tool allows you to `touch $(date -I).md` to readily
create a `2020-08-12.md` file.
I always had to read `man date` or search the web over and over, and after doing