Changeset 40725 in vbox
- Timestamp:
- Mar 30, 2012 11:25:36 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_VBoxManage.xml
r40714 r40725 1072 1072 given, then the teleporting request will only succeed if the 1073 1073 source machine specifies the same password as the one specified 1074 in the file give with this command.</para> 1074 in the file give with this command. Use <computeroutput>stdin</computeroutput> 1075 to read the password from stdin.</para> 1075 1076 </listitem> 1076 1077 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r40724 r40725 321 321 " [--teleporteraddress <address|empty>\n" 322 322 " [--teleporterpassword <password>]\n" 323 " [--teleporterpasswordfrom <file>| -]\n"323 " [--teleporterpasswordfrom <file>|stdin]\n" 324 324 " [--tracing-enabled on|off]\n" 325 325 " [--tracing-config <config-string>]\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r40724 r40725 2219 2219 char szPasswd[512]; 2220 2220 int vrc = VINF_SUCCESS; 2221 bool fStdIn = !strcmp(ValueUnion.psz, " -");2221 bool fStdIn = !strcmp(ValueUnion.psz, "stdin"); 2222 2222 PRTSTREAM pStrm; 2223 2223 if (!fStdIn)
Note:
See TracChangeset
for help on using the changeset viewer.