From 4798611d78ac7baf91a89889cb76b33e42a127fb Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Sun, 10 Apr 2016 08:45:11 +0000 Subject: [PATCH] ascii delimiters --- TODO | 1 + urchin | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/TODO b/TODO index 27ff76a..d14110b 100644 --- a/TODO +++ b/TODO @@ -287,6 +287,7 @@ Maybe fifo for x in "$@" until readonly +getopts Variable assignments specified with special built-in utilities remain in effect after the built-in completes; this shall not be the case with a diff --git a/urchin b/urchin index d3975fc..436bb46 100755 --- a/urchin +++ b/urchin @@ -48,6 +48,12 @@ set -e +# Delimiters +FS=$(printf '\u001C') +GS=$(printf '\u001D') +RS=$(printf '\u001E') +US=$(printf '\u001F') + # Urchin version number VERSION=0.0.0-master