Improve python tools' shebang

Most OS don't have python3 in /usr/bin/python...
This commit is contained in:
Virgil Dupras 2019-11-04 14:43:27 -05:00
parent 41338a4b23
commit f395297874
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# Read specified number of bytes in specified blkdev ID and spit it to stdout. # Read specified number of bytes in specified blkdev ID and spit it to stdout.
# The proper blkdev has to be selected and placed already. # The proper blkdev has to be selected and placed already.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# Read specified number of bytes at specified memory address and dump it to # Read specified number of bytes at specified memory address and dump it to
# stdout. # stdout.

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# Push specified file to specified device and verify that the contents is # Push specified file to specified device and verify that the contents is
# correct by sending a "peek" command afterwards and check the output. Errors # correct by sending a "peek" command afterwards and check the output. Errors