Files
2014-12-14 12:26:49 -06:00

16 lines
299 B
Python
Executable File

#!/usr/bin/env python
from __future__ import print_function
import sys
screen_width = 50
print('*' * screen_width)
if len(sys.argv) > 1:
header = ' '.join(sys.argv[1:])
header = header.replace('.', ' ')
print('*', header.center(screen_width - 4), '*')
print('*' * screen_width)