5 lines
146 B
Rexx
Executable File
5 lines
146 B
Rexx
Executable File
#!/usr/bin/env rexx
|
|
parse arg loc
|
|
if loc = "" then loc="Cowley,UK"
|
|
Address system "ansiweather -l "||loc||" -u imperial -s true -i false -a true"
|