Reputation: 11
I am running this script nmrCube.tcl for generating 3D box from NMR data.
I initially had problem with Library before which is now sorted
While running the script I get this, (even though it is indeed there):
Error in startup script: couldn't read file "“./nmrCube.tcl”": no such file or directory
Upvotes: 1
Views: 5020
Reputation: 137767
Tcl regards “
curly quotes”
as entirely ordinary characters. They're not alphanumerics or one of Tcl's metacharacters, so they follow the same basic rules as characters like /
and .
and so on.
You probably don't want to use them in a Tcl script except in text for display to the user. You might want to use the "
straight quotes"
instead, which are metacharacters for Tcl. If your editor insists on converting those to fancy quotes, find another text editor. (You'd have problems using it for virtually any other programming language as well.)
Upvotes: 4