Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • 1
    FYI for future readers, I had to add python before the script, e.g. ... * * 1-5 python /mnt/myHDD/myscript.py. Commented Apr 18, 2019 at 21:56
  • 1
    @BruceWayne: Did you have a 'shebang' line at the top of your script? Commented Apr 18, 2019 at 22:49
  • 1
    Ah, good point - no I don't (you're referring to the #!/usr/bin/env python thing right?). I know know what the point of that is! Great point. Commented Apr 18, 2019 at 22:51
  • 1
    @BruceWayne: Yeah - that's it. Here's a good explanation for that & how to code the shebang for max portability. Commented Apr 18, 2019 at 22:57