mirror of
https://github.com/NikitaIvanovV/ctpv.git
synced 2024-12-01 08:53:08 +01:00
17 lines
141 B
Sed
17 lines
141 B
Sed
|
#!/bin/sed -f
|
||
|
|
||
|
# Add header
|
||
|
1i\
|
||
|
.TS\
|
||
|
allbox;\
|
||
|
lb lb\
|
||
|
l li .\
|
||
|
File type\tPrograms
|
||
|
|
||
|
# Format rows
|
||
|
s/\t/&T{\n/; s/$/\nT}/
|
||
|
|
||
|
# Add footer
|
||
|
$a\
|
||
|
.TE
|