Re: recovering potentially corrupt data
Georg Sauer-Limbach <[email protected]> Tue, 16 May 2006 22:49:13 +0200
| Newsgroups | gmane.text.xml.xindice.user |
|---|---|
| Message-ID | <[email protected]> |
Rohit Mathur wrote: > [root@mathur WEB-INF]# ./xindice.sh export -v -c > xmldb:xindice://localhost:8080/db -n globalJobs1 -f globalJobs1 > : bad interpreter: No such file or directory This "bad interpreter" usually comes from the CR character in the DOS-style line delimiter 0x0A, 0x0C. Remove the CR at the end of the #!/bin/sh line and it should work. Georg