From e39a73572b26ba6c62e33c9cea14f027a438f056 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Wed, 9 Jun 2021 02:44:55 +0200 Subject: [PATCH] clean up basics --- basics/at.md | 2 -- basics/cron.md | 5 ++--- basics/locale.md | 20 ++++++++++---------- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/basics/at.md b/basics/at.md index e569d6a..0ef7e03 100644 --- a/basics/at.md +++ b/basics/at.md @@ -2,8 +2,6 @@ Install with: > sudo apt install at -> sudo pacman -S at - Enable the daemon service with: > sudo systemctl enable --now atd diff --git a/basics/cron.md b/basics/cron.md index 1606b76..e6b9b66 100644 --- a/basics/cron.md +++ b/basics/cron.md @@ -2,11 +2,11 @@ Various services from cron exist, e.g. -> sudo apt -y install cronie +> sudo apt -y install cron Start the cronie with -> sudo systemctl enable --now cronie +> sudo systemctl enable --now cron Specify a cron job with: @@ -45,7 +45,6 @@ Doing the same thing, but only in February, would be: `0 15 * 2 7` - # Testing with runparts Run-parts runs all executable scripts in a directory. diff --git a/basics/locale.md b/basics/locale.md index 530a36f..079e494 100644 --- a/basics/locale.md +++ b/basics/locale.md @@ -27,14 +27,14 @@ Make it permanent for the entire system by editing: While generally set together, the variables setable are: -| Variable | Description | -|:-------------:|:------------| -| LC_TIME | Date and time | -| LC_NUMERIC | Nonmonetary numeric formats | -| LC_PAPER | A4 vs wrong paper | -| LC_ADDRESS | Address formats, for those amazingly concise Polish addresses. | -| LC_TELEPHONE | Telephone number formats. | -| LC_MEASUREMENT | Metric or Imperial, but no Impetric available. | -| LC_IDENTIFICATION | Metadata about the locale information | -| LC_ALL | Just everything at once. | +| Variable | Description | +|:-------------------------------------:|:---------------------------------------------------------------| +| LC_TIME | Date and time | +| LC_NUMERIC | Nonmonetary numeric formats | +| LC_PAPER | A4 vs wrong paper | +| LC_ADDRESS | Address formats, for those amazingly concise Polish addresses. | +| LC_TELEPHONE | Telephone number formats. | +| LC_MEASUREMENT | Metric or Imperial, but no Impetric available. | +| LC_IDENTIFICATION | Metadata about the locale information | +| LC_ALL | Just everything at once. |