aboutsummaryrefslogtreecommitdiff
path: root/test/pdksh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-06 16:35:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-06 16:35:50 +1200
commite077e42c325d4b223ec572216a317d677489f538 (patch)
treed5f581aec9db0066b0b0643bdaa48f63d304e7ab /test/pdksh
parentHandle different .* expansion in cf(1), dub(1) (diff)
downloaddotfiles-e077e42c325d4b223ec572216a317d677489f538.tar.gz
dotfiles-e077e42c325d4b223ec572216a317d677489f538.zip
Starting an attempt at pdksh configuration
Not really sure how I'll approach this yet.
Diffstat (limited to 'test/pdksh')
-rwxr-xr-xtest/pdksh6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pdksh b/test/pdksh
new file mode 100755
index 00000000..5ebd556a
--- /dev/null
+++ b/test/pdksh
@@ -0,0 +1,6 @@
+#!/bin/sh
+for ksh in ksh/* ; do
+ [ -f "$ksh" ] || continue
+ ksh -n "$ksh" || exit
+done
+printf 'All ksh(1) scripts parsed successfully.\n'