blob: 4ca11ccb99e095e5f403007c6043f0017c6b4b48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
. commands.sh
. functions.sh
TS_COMPONENT="col"
TS_DESC="multibyte"
ts_init "$*"
cat $TS_INPUT | $TS_CMD_COL > /dev/null 2> $TS_OUTPUT
ts_finalize
|