gosync/help/help.go

18 lines
463 B
Go
Raw Normal View History

2023-09-07 15:33:35 +02:00
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")
}