VolksForth/tools/echo-toupper.py

6 lines
81 B
Python
Executable File

#!/usr/bin/python3
import sys
print(' '.join(a.upper() for a in sys.argv[1:]))