aboutsummaryrefslogtreecommitdiff
path: root/shell_utils.sh
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2021-10-01 22:05:29 +0200
committerWojtek Kosior <koszko@koszko.org>2021-10-01 22:05:29 +0200
commitd7e48c5855156b65335b228bb5de81fc500d8ace (patch)
tree85ca96f9a08c982523e340574b988563d6a48f3a /shell_utils.sh
parentea30326e242a73d3cb06589fb97cf81b674ae2e3 (diff)
downloadbrowser-extension-d7e48c5855156b65335b228bb5de81fc500d8ace.tar.gz
browser-extension-d7e48c5855156b65335b228bb5de81fc500d8ace.zip
Add complete firefox extension upload and download functionality
Diffstat (limited to 'shell_utils.sh')
-rw-r--r--shell_utils.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell_utils.sh b/shell_utils.sh
index 95e0d4e..30dfead 100644
--- a/shell_utils.sh
+++ b/shell_utils.sh
@@ -6,6 +6,12 @@
ENDL="
"
+# A "raw" echo, interprets neither backclash escapes nor command-line options.
+# Does not emit trailing newline.
+ech() {
+ printf %s "$*"
+}
+
errcho() {
echo "$@" >&2
}