I have the following Sun Grid Engine submission script:
#!/bin/sh
# sun grid engine cluster
# use current working directory
#$ -cwd
# merge error output into standard output stream
#$ -j yes
#$ -o generate_databases.log
# request to cpu number
#$ -pe make 4
currentdir=`/bin/pwd`
echo "current working directory: $currentdir"
And here is my output
/home/eamorr/sge
currentdir: Undefined variable.
As you can see, the 'currentdir' variable returns undefined.
How to fix this?