A couple things.
The verbose command isn't showing up... .ie: it's not found.
If it's there, you can type
type verbose
to see it's full path if it's actually there, and use the full path in the script to call it... otherwise, look into installing it, or just comment it out of the script.
Is the Newspaper directory created ?? Is it created as "News paper" with a space in it by chance ??? if so, recreate it with no space, or enclose your variable with { }
example:
Code:
mkdir -p $datadir
cd $datadir
to this
Code:
mkdir -p ${datadir}
cd ${datadir}
Hopefully that clears up the issues your having.