You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
545 B

4 years ago
echo 'Display tab characters as ^I'
echo "-------------------------------"
cat -T $LLO_DATAFILE | head -9
echo ""
echo "Display non printing characters"
echo "-------------------------------"
cat -v $LLO_DATAFILE | head -9
echo ""
echo "Suppress repeated empty lines"
echo "-------------------------------"
cat -s $LLO_DATAFILE | head -9
echo ""
echo "In case, you need to use the -v, -E and -T option together, you can just use the -A command line option."
echo "-------------------------------"
cat -A $LLO_DATAFILE | head -9
echo ""