VirtualBox

Changeset 85874 in vbox for trunk/src/VBox/Runtime/common/fs


Ignore:
Timestamp:
Aug 24, 2020 9:39:42 AM (4 years ago)
Author:
vboxsync
Message:

RTLs: more usage details.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/fs/RTFsCmdLs.cpp

    r84509 r85874  
    13921392RTR3DECL(RTEXITCODE) RTFsCmdLs(unsigned cArgs, char **papszArgs)
    13931393{
    1394 
    13951394    /*
    13961395     * Parse the command line.
     
    18191818
    18201819            case '?':
    1821                 RTPrintf("Usage: to be written\nOpts.on dump:\n");
     1820            {
     1821                RTPrintf("Usage: to be written\n"
     1822                         "Options dump:\n");
    18221823                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
    18241837                Assert(!Opts.papCollections);
    18251838                return RTEXITCODE_SUCCESS;
     1839            }
    18261840
    18271841            case 'V':
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette