summaryrefslogtreecommitdiffstats
path: root/helper/string.inc
diff options
context:
space:
mode:
Diffstat (limited to 'helper/string.inc')
-rw-r--r--helper/string.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/helper/string.inc b/helper/string.inc
index 9f18e4e0..04809a93 100644
--- a/helper/string.inc
+++ b/helper/string.inc
@@ -7,6 +7,11 @@ trim() {
echo -n "$var"
}
+# Inline version of trim, use when piping
+itrim () {
+ sed -r 's/^\s+//g;s/\s+$//g'
+}
+
# usage: CANONICALIZED_STRING=$(canonalize <path>)
# usage with relative path requires you to be in the correct directory.
canonicalize() {