Source: /cirosantilli/how-to-run-a-micropython-script-from-a-file-on-the-raspberry-pi-pico-w-from-the-command-line

= How to run a MicroPython script from a file on the Raspberry Pi Pico W from the command line?

The first/only way Ciro could find was with <ampy>: https://stackoverflow.com/questions/74150782/how-to-run-a-micropython-host-script-file-on-the-raspbery-pi-pico-from-the-host/74150783\#74150783 That just worked and it worked perfectly!
``
python3 -m pip install --user adafruit-ampy
ampy --port /dev/ttyACM0 run blink.py
``

TODO: possible with <rshell>?