Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a cronjob that executed a shell script Inside my shell script i do a module load tww/perl

but it gives me

module: command not found

what can i do? I have at least 10 modules I need to load

share|improve this question

2 Answers

up vote 1 down vote accepted

It seems likely your script depends on an environment setting, such as the initial path to your modules, that cron doesn't know about. By default the cron environment is quite austere, or so it is on *nix systems I use.

share|improve this answer

Well, I'm late but replacing

#!/bin/bash

by

#!/bin/bash -l

works for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.