#!/bin/bash -eu
# one-line: convert a one-liner shell command that was split over several lines, to a single line
perl -pe 'chomp; s/\\\s*$/ /;' | tr -s ' ' ; echo
