5 lines
146 B
Rexx
5 lines
146 B
Rexx
|
#!/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"
|