Skip to main content
removed typo
Source Link

This is an issue i ran into when running scripts via cron. I am not sure if it applies here, but here try adding your path at the beginning of the script. Something like... export PATH="yourpath"

    #!/bin/bash
    
    PATH="/your/path"
    ...

This is an issue i ran into when running scripts via cron. I am not sure if it applies here, but here try adding your path at the beginning of the script. Something like... export PATH="yourpath"

This is an issue i ran into when running scripts via cron. I am not sure if it applies here, but here try adding your path at the beginning of the script. Something like...

    #!/bin/bash
    
    PATH="/your/path"
    ...
Source Link

This is an issue i ran into when running scripts via cron. I am not sure if it applies here, but here try adding your path at the beginning of the script. Something like... export PATH="yourpath"