Re: Synchronize 2 folders over the Internet
Re: Synchronize 2 folders over the Internet
- Subject: Re: Synchronize 2 folders over the Internet
- From: Thomas Fischer <email@hidden>
- Date: Tue, 27 Apr 2010 09:55:00 +0200
Greetings!
Am 27.04.2010 um 00:25 schrieb Philip Ershler:
>
> On Apr 26, 2010, at 3:13 PM, Bert Groeneveld wrote:
>
>> Hello James, thanks for your answer.
>>
>> How can I find out about this Rsync software?
>
> rsync is supplied with OS X. But you do need to learn just a smidgen of command line use.
>
> Phil
>
>
>
>> Unfortunately I don't know anything about Terminal commands, etc.
>> Where to purchase? Is there a website, or a quickstart tutorial?
>> And do I need to make firewall configuration adjustments?
>> Or do you have an example script (the "one liner bash script")?
I don't have a sample script, but Apple (on the basis of Unix) also supplies some information on the built-in commands.
And for those who drat the Terminal, here is a small AppleScript that will open the respective information nicely formatted in Preview after filling in the name of the command, e.g. "rsync".
You might adjust the place where the document is created either to a place that is automatically wiped out (probably something inside "path to temporary items") or to a place where you want to store them (in my case "/Documents/Doku/Unix/").
set myResult to display dialog "Dokumentation für:" default answer ""
copy the text returned of myResult to myCommand
if myCommand is "" then exit repeat
set myCommand to word 1 of myCommand
set fileRef to (the path to temporary items as string) & myCommand & ".pdf"
# set fileRef to ("/Documents/Doku/Unix/" & myCommand & ".pdf")
# set fileRef to ((the path to home folder as string) & myCommand & ".pdf")
set manFilePath to quoted form of POSIX path of fileRef
do shell script "/usr/bin/man -t " & myCommand & " | /usr/bin/pstopdf -i -o " & manFilePath
tell application "Preview" to open fileRef
All the best
Thomas
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden