From b48d3ee1905e3fc396887276f758797e368216c9 Mon Sep 17 00:00:00 2001 From: Trent Huber Date: Sat, 8 Nov 2025 04:08:49 -0500 Subject: [PATCH] INSTALL.md syntax highlighting --- INSTALL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1fb950f..977b572 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -21,7 +21,7 @@ similar approach can be used for other shells). We'll need to modify the scripts that are executed at login and during an interactive session. For sh, the login configuration file is `.profile`. -```console +```sh # ~.profile ENV=$HOME/.shrc @@ -33,7 +33,7 @@ THUSLOGIN=-l `ENV` is used by sh as the path of the user's configuration file used for interactive sessions, in this case, `.shrc`. -```console +```sh # ~.shrc test -z "$ESCAPE" && echo $- | grep -q i && exec thus $THUSLOGIN @@ -51,19 +51,19 @@ thus. Since aliases take precedent over executables in the path, you could even define an alias to sh that runs a script that runs sh after defining `ESCAPE`. -```console +```sh # ~.sh.sh #! /usr/bin/env thus -set ESCAPE true +set ESCAPE escape env sh unset ESCAPE ``` And then the alias goes in the interactive config file for thus. -```console +```sh # ~.thusrc alias sh "~.sh.sh" -- 2.51.0