7 lines
No EOL
147 B
Bash
7 lines
No EOL
147 B
Bash
#!/bin/bash
|
|
file=${RANDOM}
|
|
echo 'What is your city?:'
|
|
read city1
|
|
city2="$(echo ${city1} | sed 's#[[:space:]]#_#g')"
|
|
|
|
w3m https://wttr.in/"${city2}" |