mirror of
https://github.com/danog/system-bus-radio.git
synced 2024-11-30 08:28:57 +01:00
8b0d96fff9
* Check for equal number of tabs on each line of TEST-DATA.tsv * Fix script name * Move to tests
12 lines
300 B
Bash
12 lines
300 B
Bash
#!/usr/bin/env bash
|
|
UNIQUE_TAB_LINES_COUNT=$(sed 's/[^\t]//g' TEST-DATA.tsv | sort -u | wc -l)
|
|
|
|
if [ $UNIQUE_TAB_LINES_COUNT -eq "1" ]
|
|
then
|
|
echo "All lines have the same number of tabs. All good!"
|
|
else
|
|
echo "Not all lines have the same number of tabs."
|
|
echo $UNIQUE_TAB_LINES_COUNT
|
|
exit 1
|
|
fi
|