Is there some "trick" to the following. I would like to create a script that will sync 2 folders. My script as it is at the moment is
What I'm looking for is some sort of method of replacing the value USERID with the user's real userid.
I have a workaround inasmuch as I can create the script file above on the fly, but it would be neater if I could change the script to something like
(you get the idea)
Code:
load "c:\documents and settings\USERID\local settings\Application data\MFE\USERID" "H:\mash\mfe\databaser\db2\USERID" sync update:left->right
I have a workaround inasmuch as I can create the script file above on the fly, but it would be neater if I could change the script to something like
Code:
[I]set current_user = userid[/I] load "c:\documents and settings\[I]"current_user"[/I]\local settings\Application data\MFE\"[I]current_user[/I] "H:\mash\mfe\databaser\db2\"[I]current_user[/I] sync update:left->right
Comment