Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with AppleScript and need to do this:

set TextToWrite to " #!/bin/bash cd "$( dirname "$0" )" java -server -Xmx4G -jar ./craftbukkit.jar" "

As you can see, the text I need to make into a string has quotes in it. How do I set

#!/bin/bash cd "$( dirname "$0" )" java -server -Xmx4G -jar ./craftbukkit.jar"

to an AppleScript string without the quotes messing it up?

share|improve this question
My answer is below. Your bash command could be simplified to cd "${0%/*}" && java <params>, BTW. No externals and a modicum of flow control. – kopischke May 19 '12 at 20:14

2 Answers

up vote 5 down vote accepted

To insert literal quotes into an Applescript string, you have to escape them, i.e.

set myString to "This is a \"quoted\" text."

AppleScript has the same convention as most languages, which is to use a backslash for escaping of special characters, of which there are only two: quotes and … backslash. See the section “Special string characters” of the AppleScript Language Guide.

share|improve this answer
2  
Also note there are quite a few gotchas to the use of quotes in AppleScript strings if these are passed to the shell, most of them having to do with how the shell processes escaped and unescaped quotes. See this question for some more details. – kopischke May 19 '12 at 20:36

The following syntax can also be used:

set aString to "quoted"
set myString2 to "This is a " & quoted form of aString & " text."
share|improve this answer
I actually ended up doing this:p – hawkfalcon Jun 28 '12 at 12:45

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.