From a2648f87a504395567c5f0aa24e11cf46cb8baee Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 26 Mar 2019 18:04:44 +0000 Subject: Add nonewlines script --- nonewlines.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nonewlines.sh (limited to 'nonewlines.sh') diff --git a/nonewlines.sh b/nonewlines.sh new file mode 100644 index 0000000..3b5af27 --- /dev/null +++ b/nonewlines.sh @@ -0,0 +1,12 @@ +#!/bin/sh +usage="Usage: $0 dir + +Concatenates all .txt files in a directory together and removes all +line breaks, saving the result to dirname.txt + +test $# -ne 1 && echo "$usage" && exit 1 + +d=`dirname "$1"` +cat "$1"/*txt | tr -d '\n' > "${d}.txt" + +echo "Saved all text, with no newlines, to ${d}.txt" -- cgit v1.2.1-24-ge1ad