5 lines
109 B
Rexx
5 lines
109 B
Rexx
|
#!/usr/bin/env rexx
|
||
|
parse arg loc
|
||
|
if loc = "" then loc="Cowley,UK"
|
||
|
address system 'curl wttr.in/'||loc||'?u'
|