View Single Post
  #18  
Old 01-02-2007, 11:25 AM
xtian666 xtian666 is offline
Registered User
 
Join Date: Jan 2007
Posts: 2
Quote:
Originally Posted by dnanian View Post
I think you'll now be able to do this with a single line, since the mini-script worked, the tricky thing being escaping things properly, and I couldn't figure it out. So put the eject in a little saved script:

Code:
tell application "Finder" to eject "mjg"
save as text or a compiled script, and do:

Code:
#!/bin/sh
nohup /bin/bash -c "sleep 20; osascript path/to/the/script/file" &
The applescript works great, but how do I impliment the shell command into SuperDuper?
Reply With Quote