Hello,
First, love the program and really appreciate all the work on it.
Unfortunaly, I think I have to come to you with a problem. I am trying to run a multiline script from the command line (Script "Sync_Files"):
Sync "Directory_1"
Sync "Directory_2"
Secure "Decrypt_Directory_3"
Sync "Directory_3"
Secure "Encrypt_Directory_3"
As you can see, the script includes Secure commands. Per the manual you are supposed to use the syntax: Toucan Script scriptname passowrd repeatpassword. (Might want to look into that typo too. The passwords are then used for any required password entry for the commands.
Here is the command I use: Toucan Script Sync_File Pass_Word Pass_Word. When I run it I immediately get an error telling me: You have specified the wrong number of options.
Just to see if it would work, since I have 2 Secure commands I've also tried including the password twice (Toucan Script Sync_File Pass_Word Pass_Word Pass_Word Pass_Word) I get another error: You need to repeat the password and ensure the passwords are identical.
And finally, just to really poke at it, I also tried including the password in the script:
Sync "Directory_1"
Sync "Directory_2"
Secure "Decrypt_Directory_3" "Pass_Word" "Pass_Word"
Sync "Directory_3"
Secure "Encrypt_Directory_3" "Pass_Word" "Pass_Word"
Obviously that didn't work either. Could I get a little help with this?
Appreciate It,
Brook