18 lines
463 B
Go
18 lines
463 B
Go
|
package help
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// exported function(s)
|
||
|
func Print() {
|
||
|
fmt.Println("usage:")
|
||
|
fmt.Println("\tgosync [source] [target] (options)")
|
||
|
fmt.Println("")
|
||
|
fmt.Println("options:")
|
||
|
fmt.Println("\t-u | --user:\t\tset user for ssh / rsync")
|
||
|
fmt.Println("\t-p | --password:\tset password for ssh / rsync")
|
||
|
fmt.Println("\t-c | --concurrency:\tset limit for concurrent rsync processes")
|
||
|
fmt.Println("\t-v | --verbose:\t\tenable verbose / debug output")
|
||
|
}
|