#!/bin/bash

cat <<EOF >tabtest.in
a	b c
EOF

od -t x1c tabtest.in

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

od -t x1c tabtest.out
