diff options
author | John Ankarström <john@ankarstrom.se> | 2021-06-06 21:41:54 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-06-06 21:41:54 +0200 |
commit | 8b50c699652e39812024af2c34973c6359302c46 (patch) | |
tree | d56fbf1e0999617ad6c64fd5192ffe4225fd9ea6 /vpeval | |
parent | 5dd1844b66908cb16f7b7e1a792a11b9780de183 (diff) | |
download | vp-8b50c699652e39812024af2c34973c6359302c46.tar.gz |
Read stdin if not a tty
Diffstat (limited to 'vpeval')
-rwxr-xr-x | vpeval | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,2 +1,7 @@ #!/bin/sh -echo "$(eval "$(sed '/^#/d')" 2>&1)" | sed 's/^/# /' +{ + if [ -z "$VPIN" ] + then eval "$(sed '/^#/d')" 2>&1 + else eval "$(sed '/^#/d')" 2>&1 <"$VPIN" + fi +} | sed 's/^/# /' |