Exemplo n.º 1
0
// CLI invocation for *SomeLs
func LsCli(call []string) (error, int) {
	util := new(SomeLs)
	return someutils.StdInvoke((util), call)
}
Exemplo n.º 2
0
// CLI invocation for *SomeGunzip
func GunzipCli(call []string) (error, int) {
	util := new(SomeGunzip)
	return someutils.StdInvoke((util), call)
}
Exemplo n.º 3
0
// CLI invocation for *SomeTouch
func TouchCli(call []string) (error, int) {

	util := new(SomeTouch)
	return someutils.StdInvoke((util), call)
}
Exemplo n.º 4
0
// CLI invocation for *SomeXargs
func XargsCli(call []string) (error, int) {
	util := new(SomeXargs)
	return someutils.StdInvoke(util, call)
}
Exemplo n.º 5
0
// CLI invocation for *SomeDirname
func DirnameCli(call []string) (error, int) {
	util := new(SomeDirname)
	return someutils.StdInvoke((util), call)
}
Exemplo n.º 6
0
// CLI invocation for *SomeBasename
func BasenameCli(call []string) (error, int) {
	basename := new(SomeBasename)
	return someutils.StdInvoke((basename), call)
}