I acquired a computer running debian bookworm.
On running the command "weather" there's a result.
I want to find where the executable is on the system to alter it.
The problem is that I can't find where it is.
Everything I've tried is in the commands below.
It's not in the usual /bin, /usr/bin, /sbin, /usr/sbin.
It's not locateable in the locate database.
What other commands can I use to find it, or how to find it?
On running the command "weather" there's a result.
I want to find where the executable is on the system to alter it.
The problem is that I can't find where it is.
Everything I've tried is in the commands below.
It's not in the usual /bin, /usr/bin, /sbin, /usr/sbin.
It's not locateable in the locate database.
What other commands can I use to find it, or how to find it?
Code:
[[email protected] ~]$ weather
Weather report: wellington
\ / Partly cloudy
_ /"".-. 18 °C
\_( ). ↓ 46 km/h
/(___(__) 10 km
0.1 mm
┌─────────────┐
┌──────────────────────────────┬───────────────────────┤ Sat 16 Apr ├───────────────────────┬──────────────────────────────┐
│ Morning │ Noon └──────┬──────┘ Evening │ Night │
├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┤
│ _`/"".-. Patchy rain po…│ _`/"".-. Patchy rain po…│ \ / Clear │ \ / Clear │
│ ,\_( ). 16 °C │ ,\_( ). 15 °C │ .-. +15(13) °C │ .-. +15(14) °C │
│ /(___(__) ↘ 46-62 km/h │ /(___(__) ↘ 46-68 km/h │ ― ( ) ― ↓ 27-47 km/h │ ― ( ) ― ↙ 16-27 km/h │
│ ‘ ‘ ‘ ‘ 10 km │ ‘ ‘ ‘ ‘ 10 km │ `-’ 10 km │ `-’ 10 km │
│ ‘ ‘ ‘ ‘ 0.1 mm | 89% │ ‘ ‘ ‘ ‘ 0.1 mm | 75% │ / \ 0.0 mm | 0% │ / \ 0.0 mm | 0% │
└──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┘
[[email protected] ~]$ which weather
[[email protected] ~]$ whereis weather
[[email protected] ~]$ echo $PATH
/home/dav/.local/bin:/home/dav/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
[[email protected] ~]$ ls /bin | grep weather
[[email protected] ~]$ ls /sbin |grep weather
[[email protected] ~]$ ls /usr/local/bin |grep weather
[[email protected] ~]$ ls /usr/local/games |grep weather
[[email protected] ~]$ ls /usr/games |grep weather
[[email protected] ~]$ ls /home/dav/.local/bin |grep weather
[[email protected] ~]$ apropos weather
weather: nothing appropriate.
[[email protected] ~]$ locate weather
/usr/lib/python3/dist-packages/youtube_dl/extractor/__pycache__/theweatherchannel.cpython-39.pyc
/usr/lib/python3/dist-packages/youtube_dl/extractor/theweatherchannel.py
/usr/lib/x86_64-linux-gnu/lxpanel/plugins/weather.so
/usr/share/icons/Adwaita/16x16/status/weather-clear-night-symbolic.symbolic.png
....