aboutsummaryrefslogtreecommitdiff
path: root/bin/eds
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-16 21:06:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-16 21:06:42 +1200
commit2d14d81e82c12e8d4d52604e9aa9faf917ecb3d9 (patch)
tree2ab5131ef743ff4ac61c1a88fb6ac83d097f1658 /bin/eds
parentRemove some cruft from apf(1) (diff)
downloaddotfiles-2d14d81e82c12e8d4d52604e9aa9faf917ecb3d9.tar.gz
dotfiles-2d14d81e82c12e8d4d52604e9aa9faf917ecb3d9.zip
Use regular BASH_VERSINFO check
Diffstat (limited to 'bin/eds')
-rwxr-xr-xbin/eds3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/eds b/bin/eds
index 06686810..eda00174 100755
--- a/bin/eds
+++ b/bin/eds
@@ -2,6 +2,9 @@
# Create and edit executable scripts in a directory EDSPATH (defaults to ~/.local/bin)
self=eds
+# Give up completely if no BASH_VERSINFO (<2.0)
+[ -n "$BASH_VERSINFO" ] || exit
+
# Define a function to show usage
usage() {
printf 'USAGE: %s [EDITOR_OPTS] [--] FILE1 [FILE2...]\n' \