#!/bin/bash
# test case for unexpand with single whitespace leading up to a tab
cat <<EOF >testspace.in
abc def  g
EOF

od -t x1c testspace.in

unexpand -t2 -a <testspace.in >testspace.out

od -t x1c testspace.out
