From eb171a59b91a0730f095e951ebf783771ec50251 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 27 Jul 2019 17:08:17 -0400 Subject: Fix shell script style in ~/.local/bin --- home/.local/bin/nasd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'home/.local/bin/nasd') diff --git a/home/.local/bin/nasd b/home/.local/bin/nasd index 203fdd2d..d64b2c3a 100755 --- a/home/.local/bin/nasd +++ b/home/.local/bin/nasd @@ -1,9 +1,9 @@ #!/bin/sh -set -e -u +set -eu dir=$(mktemp -d) -echo 'bits 64' > $dir/input -cat >> $dir/input -nasm -o $dir/output $dir/input || true -ndisasm -b 64 $dir/output || true -rm -r $dir +echo 'bits 64' > "${dir}/input" +cat >> "${dir}/input" +nasm -o "${dir}/output" "${dir}/input" || true +ndisasm -b 64 "${dir}/output" || true +rm -r "$dir" -- cgit 1.4.1