miscutils/upcasetl

4 lines
85 B
Plaintext
Raw Normal View History

2022-06-08 10:07:41 +00:00
#!/usr/bin/awk -f
/^\.(TL|SH)/ { print; getline; print toupper($0); next }
{ print }