Search found 3 matches
- Thu Aug 15, 2013 7:51 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Variable followed by single quote?
- Replies: 4
- Views: 4153
Re: Variable followed by single quote?
Yes, or you can use the constant: Quote adb shell su -c 'vdc cryptfs pde wipe" && decoyVariable && HiddenVariable & "'" or adb shell su -c 'vdc cryptfs pde wipe" && decoyVariable && HiddenVariable & QUOTE Dave Perfect. I think I had used QUOTE with double & so it didn't work. It works now though :)
- Thu Aug 15, 2013 7:45 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Variable followed by single quote?
- Replies: 4
- Views: 4153
Re: Variable followed by single quote?
Typo There is also a double quote in the front.Simon wrote:Maybe I can learn something here:What does a single double quote do?...wipe"...
Simon
Thanks for the answer! Everything works.
- Thu Aug 15, 2013 6:41 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Variable followed by single quote?
- Replies: 4
- Views: 4153
Variable followed by single quote?
I am trying to create an app the calls adb.exe and runs a special command but I am having issues here: "adb shell su -c 'vdc cryptfs pde wipe" && decoyVariable && HiddenVariable & ' This doesn't work because of the last single quote. How do I get that quote added to the end of the line after both va...