mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2024-11-24 13:53:07 +01:00
12 lines
154 B
Bash
12 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo '.TS'
|
||
|
echo 'allbox;'
|
||
|
echo 'lb lb'
|
||
|
echo 'l li .'
|
||
|
|
||
|
printf '%s\t%s\n' 'File type' 'Programs'
|
||
|
sort | sed 's/\t/&T{\n/; s/$/\nT}/'
|
||
|
|
||
|
echo '.TE'
|