Changeset 85874 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Aug 24, 2020 9:39:42 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/RTFsCmdLs.cpp
r84509 r85874 1392 1392 RTR3DECL(RTEXITCODE) RTFsCmdLs(unsigned cArgs, char **papszArgs) 1393 1393 { 1394 1395 1394 /* 1396 1395 * Parse the command line. … … 1819 1818 1820 1819 case '?': 1821 RTPrintf("Usage: to be written\nOpts.on dump:\n"); 1820 { 1821 RTPrintf("Usage: to be written\n" 1822 "Options dump:\n"); 1822 1823 for (unsigned i = 0; i < RT_ELEMENTS(s_aOptions); i++) 1823 RTPrintf(" -%c,%s\n", s_aOptions[i].iShort, s_aOptions[i].pszLong); 1824 if (s_aOptions[i].iShort < 127 && s_aOptions[i].iShort >= 0x20) 1825 RTPrintf(" -%c,%s\n", s_aOptions[i].iShort, s_aOptions[i].pszLong); 1826 else 1827 RTPrintf(" %s\n", s_aOptions[i].pszLong); 1828 #ifdef RT_OS_WINDOWS 1829 const char *pszProgNm = RTPathFilename(papszArgs[0]); 1830 RTPrintf("\n" 1831 "The path prefix '\\\\:iprtnt:\\' can be used to access the NT namespace.\n" 1832 "To list devices: %s -la \\\\:iprtnt:\\Device\n" 1833 "To list win32 devices: %s -la \\\\:iprtnt:\\GLOBAL??\n" 1834 "To list the root (hack/bug): %s -la \\\\:iprtnt:\\\n", 1835 pszProgNm, pszProgNm, pszProgNm); 1836 #endif 1824 1837 Assert(!Opts.papCollections); 1825 1838 return RTEXITCODE_SUCCESS; 1839 } 1826 1840 1827 1841 case 'V':
Note:
See TracChangeset
for help on using the changeset viewer.