1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-04 08:23:50 +03:00

r8317: convert the example scripts over to the new GetOptions() call

This commit is contained in:
Andrew Tridgell
2005-07-11 07:43:36 +00:00
committed by Gerald (Jerry) Carter
parent 775fb56ac2
commit 5f079d7463
4 changed files with 54 additions and 11 deletions

View File

@@ -3,6 +3,17 @@
test echo pipe calls from ejs
*/
var options = new Object();
ok = GetOptions(ARGV, options,
"POPT_AUTOHELP",
"POPT_COMMON_SAMBA",
"POPT_COMMON_CREDENTIALS");
if (ok == false) {
println("Failed to parse options: " + options.ERROR);
return -1;
}
libinclude("base.js");
/*
@@ -198,7 +209,11 @@ if (ARGV.length == 0) {
exit(0);
}
var binding = ARGV[0];
if (options.ARGV.length != 1) {
println("Usage: samr.js <BINDING>");
return -1;
}
var binding = options.ARGV[0];
var conn = new Object();
print("Connecting to " + binding + "\n");