java/sql-dk/bash-completion.sh
author František Kučera <franta-hg@frantovo.cz>
Sun, 01 Feb 2015 00:03:40 +0100
branchv_0
changeset 185 087d8ec75109
parent 81 847c83288d01
child 238 4a1864c3e867
permissions -rwxr-xr-x
Tabular formatter: fix problem with CR (carriage return).
Less command or orher programs shows it as ^M (two characters) and it breaks the table layout – so we need to translate it to a single symbol.
franta-hg@81
     1
#!/bin/bash
franta-hg@81
     2
franta-hg@81
     3
cat \
franta-hg@81
     4
	src/info/globalcode/sql/dk/Constants.java \
franta-hg@81
     5
	src/info/globalcode/sql/dk/formatting/* \
franta-hg@81
     6
	src/info/globalcode/sql/dk/CLIParser.java \
franta-hg@81
     7
	| ../../scripts/bash_completion.pl
franta-hg@81
     8