minor fixes
authorIan Kelling <ian@iankelling.org>
Thu, 18 Apr 2024 06:28:33 +0000 (02:28 -0400)
committerIan Kelling <ian@iankelling.org>
Thu, 18 Apr 2024 06:28:33 +0000 (02:28 -0400)
mount-latest-remote
ssh-emacs-setup

index 33633111b6f47b1b00ca5af3a1c20e4682cb5081..f63a6f7954da3df926aabdf6560c75e9bd5abece 100755 (executable)
@@ -26,8 +26,8 @@
 
 set -e; . /usr/local/lib/bash-bear; set +e
 
-readonly this_file; this_file="$(readlink -f -- "${BASH_SOURCE[0]}")";
-script_dir=${this_file%/*}
+this_file="$(readlink -f -- "${BASH_SOURCE[0]}")"
+readonly this_file script_dir="${this_file%/*}"
 
 if (( ! $# )); then
   echo "mount-latest-remote: error: a host argument"
index b89f2bd899438c60d364f9f913e10dad98972dae..309ab0a5ac3ea28222c812d843cf182020752f70 100755 (executable)
@@ -32,7 +32,9 @@ if [[ -s ~/.bashrc ]];then . ~/.bashrc;fi
 set -eE -o pipefail
 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR
 
-readonly this_file; this_file="$(readlink -f -- "${BASH_SOURCE[0]}")"; cd ${this_file%/*}
+this_file="$(readlink -f -- "${BASH_SOURCE[0]}")"
+readonly this_file this_dir="${this_file%/*}"
+cd "$this_dir"
 # get rid of useless motd stuff
 sed -i --follow-symlinks 's/^\s*PrintLastLog .*/PrintLastLog no/' /etc/ssh/sshd_config
 rm -f /etc/update-motd.d/10-help-text /etc/update-motd.d/00-header