diff --git a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
index 5301021..06eec34 100644
--- a/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
+++ b/infrastructure_and_operations/systemd_openrc_cheatsheet.myco
@@ -17,3 +17,3 @@ table {
| how to make service configuration file changes take effect | `systemctl daemon-reload` | no action required |
-| how to view the logs for a service | `journalctl -u <servicename> -n 100` (gets last 100 lines) | check inside the service configuration file (see above). it should have `output_log=<filepath>` and `error_log=<filepath>` |
+| how to view the logs for a service | `journalctl -u <servicename> -n 100 --no-pager` (gets last 100 lines) | check inside the service configuration file (see above). it should have `output_log=<filepath>` and `error_log=<filepath>` |
| how to configure environment variables for a service? | you can [[ https://www.baeldung.com/linux/systemd-services-environment-variables | use the Environment="var=value" in the service configuration file ]] | `/etc/default/<servicename>` is the file. Add one `var=value` per line |