aboutsummaryrefslogtreecommitdiff
path: root/check/bin
diff options
context:
space:
mode:
Diffstat (limited to 'check/bin')
-rwxr-xr-xcheck/bin14
1 files changed, 0 insertions, 14 deletions
diff --git a/check/bin b/check/bin
deleted file mode 100755
index 2fc4e767..00000000
--- a/check/bin
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-for bin in bin/* ; do
- [ -x "$bin" ] || continue
- hb=$(sed 1q "$bin") || exit
- case $hb in
- *bash)
- bash -n "$bin" || exit
- ;;
- *sh)
- sh -n "$bin" || exit
- ;;
- esac
-done
-printf 'All shell scripts in bin parsed successfully.\n'