forked from adolfopa/miscutils
4 lines
85 B
Plaintext
4 lines
85 B
Plaintext
|
#!/usr/bin/awk -f
|
||
|
/^\.(TL|SH)/ { print; getline; print toupper($0); next }
|
||
|
{ print }
|