!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/autogen/autogen.html/   drwxr-xr-x
Free 13.37 GB of 57.97 GB (23.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     local-use.html (4.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
local use (GNU AutoGen - The Automated Program Generator)

7.9.1 local-only use

To use AutoOpts in your application where you do not have to worry about distribution issues, your issues are simple and few.

  • Create a file ‘myopts.def’, according to the documentation above. It is probably easiest to start with the example in Quick Start and edit it into the form you need.
  • Run AutoGen to create the option interface file (myopts.h) and the option descriptor code (myopts.c):
    autogen myopts.def
    
  • In all your source files where you need to refer to option state, #include "myopts.h".
  • In your main routine, code something along the lines of:
    #define ARGC_MIN some-lower-limit
    #define ARGC_MAX some-upper-limit
    main( int argc, char** argv )
    {
        {
            int arg_ct = optionProcess( &myprogOptions, argc, argv );
            argc -= arg_ct;
            if ((argc < ARGC_MIN) || (argc > ARGC_MAX)) {
                fprintf( stderr, "%s ERROR:  remaining args (%d) "
                         "out of range\n", myprogOptions.pzProgName,
                         argc );
    
                USAGE( EXIT_FAILURE );
            }
            argv += arg_ct;
        }
        if (HAVE_OPT(OPTN_NAME))
            respond_to_optn_name();
        ...
    }
    
  • Compile ‘myopts.c’ and link your program with the following additional arguments:
    `autoopts-config cflags ldflags` myopts.c
    

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0044 ]--