GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
usr/include/gawkapi.h 0000644 00000117305 00000000000 0010544 0 ustar 00 /*
* gawkapi.h -- Definitions for use by extension functions calling into gawk.
*/
/*
* Copyright (C) 2012-2019 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
*
* GAWK is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* GAWK is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/*
* The following types and/or macros and/or functions are referenced
* in this file. For correct use, you must therefore include the
* corresponding standard header file BEFORE including this file.
*
* FILE - <stdio.h>
* NULL - <stddef.h>
* memset(), memcpy() - <string.h>
* size_t - <sys/types.h>
* struct stat - <sys/stat.h>
*
* Due to portability concerns, especially to systems that are not
* fully standards-compliant, it is your responsibility to include
* the correct files in the correct way. This requirement is necessary
* in order to keep this file clean, instead of becoming a portability
* hodge-podge as can be seen in the gawk source code.
*
* To pass reasonable integer values for ERRNO, you will also need to
* include <errno.h>.
*/
#ifndef _GAWK_API_H
#define _GAWK_API_H
/*
* General introduction:
*
* This API purposely restricts itself to ISO C 90 features. In particular, no
* bool, no // comments, no use of the restrict keyword, or anything else,
* in order to provide maximal portability.
*
* Exception: the "inline" keyword is used below in the "constructor"
* functions. If your compiler doesn't support it, you should either
* -Dinline='' on your command line, or use the autotools and include a
* config.h in your extensions.
*
* Additional important information:
*
* 1. ALL string values in awk_value_t objects need to come from api_malloc().
* Gawk will handle releasing the storage if necessary. This is slightly
* awkward, in that you can't take an awk_value_t that you got from gawk
* and reuse it directly, even for something that is conceptually pass
* by value.
*
* 2. Due to gawk internals, after using sym_update() to install an array
* into gawk, you have to retrieve the array cookie from the value
* passed in to sym_update(). Like so:
*
* new_array = create_array();
* val.val_type = AWK_ARRAY;
* val.array_cookie = new_array;
* sym_update("array", & val); // install array in the symbol table
*
* new_array = val.array_cookie; // MUST DO THIS
*
* // fill in new array with lots of subscripts and values
*
* Similarly, if installing a new array as a subarray of an existing
* array, you must add the new array to its parent before adding any
* elements to it.
*
* You must also retrieve the value of the array_cookie after the call
* to set_element().
*
* Thus, the correct way to build an array is to work "top down".
* Create the array, and immediately install it in gawk's symbol table
* using sym_update(), or install it as an element in a previously
* existing array using set_element().
*
* Thus the new array must ultimately be rooted in a global symbol. This is
* necessary before installing any subarrays in it, due to gawk's
* internal implementation. Strictly speaking, this is required only
* for arrays that will have subarrays as elements; however it is
* a good idea to always do this. This restriction may be relaxed
* in a subsequent revision of the API.
*/
/* Allow use in C++ code. */
#ifdef __cplusplus
extern "C" {
#endif
/* This is used to keep extensions from modifying certain fields in some structs. */
#ifdef GAWK
#define awk_const
#else
#define awk_const const
#endif
typedef enum awk_bool {
awk_false = 0,
awk_true
} awk_bool_t; /* we don't use <stdbool.h> on purpose */
/*
* If an input parser would like to specify the field positions in the input
* record, it may populate an awk_fieldwidth_info_t structure to indicate
* the location of each field. The use_chars boolean controls whether the
* field lengths are specified in terms of bytes or potentially multi-byte
* characters. Performance will be better if the values are supplied in
* terms of bytes. The fields[0].skip value indicates how many bytes (or
* characters) to skip before $1, and fields[0].len is the length of $1, etc.
*/
typedef struct {
awk_bool_t use_chars; /* false ==> use bytes */
size_t nf;
struct awk_field_info {
size_t skip; /* amount to skip before field starts */
size_t len; /* length of field */
} fields[1]; /* actual dimension should be nf */
} awk_fieldwidth_info_t;
/*
* This macro calculates the total struct size needed. This is useful when
* calling malloc or realloc.
*/
#define awk_fieldwidth_info_size(NF) (sizeof(awk_fieldwidth_info_t) + \
(((NF)-1) * sizeof(struct awk_field_info)))
/* The information about input files that input parsers need to know: */
typedef struct awk_input {
const char *name; /* filename */
int fd; /* file descriptor */
#define INVALID_HANDLE (-1)
void *opaque; /* private data for input parsers */
/*
* The get_record function is called to read the next record of data.
*
* It should return the length of the input record or EOF, and it
* should set *out to point to the contents of $0. The rt_start
* and rt_len arguments should be used to return RT to gawk.
* If EOF is not returned, the parser must set *rt_len (and
* *rt_start if *rt_len is non-zero).
*
* Note that gawk will make a copy of the record in *out, so the
* parser is responsible for managing its own memory buffer.
* Similarly, gawk will make its own copy of RT, so the parser
* is also responsible for managing this memory.
*
* It is guaranteed that errcode is a valid pointer, so there is
* no need to test for a NULL value. Gawk sets *errcode to 0,
* so there is no need to set it unless an error occurs.
*
* If an error does occur, the function should return EOF and set
* *errcode to a positive value. In that case, if *errcode is greater
* than zero, gawk will automatically update the ERRNO variable based
* on the value of *errcode (e.g., setting *errcode = errno should do
* the right thing).
*
* If field_width is non-NULL, then *field_width will be initialized
* to NULL, and the function may set it to point to a structure
* supplying field width information to override the default
* gawk field parsing mechanism. Note that this structure will not
* be copied by gawk; it must persist at least until the next call
* to get_record or close_func. Note also that field_width will
* be NULL when getline is assigning the results to a variable, thus
* field parsing is not needed.
*/
int (*get_record)(char **out, struct awk_input *iobuf, int *errcode,
char **rt_start, size_t *rt_len,
const awk_fieldwidth_info_t **field_width);
/*
* No argument prototype on read_func to allow for older systems
* whose headers are not up to date.
*/
ssize_t (*read_func)();
/*
* The close_func is called to allow the parser to free private data.
* Gawk itself will close the fd unless close_func first sets it to
* INVALID_HANDLE.
*/
void (*close_func)(struct awk_input *iobuf);
/* put last, for alignment. bleah */
struct stat sbuf; /* stat buf */
} awk_input_buf_t;
typedef struct awk_input_parser {
const char *name; /* name of parser */
/*
* The can_take_file function should return true if the parser
* would like to parse this file. It should not change any gawk
* state!
*/
awk_bool_t (*can_take_file)(const awk_input_buf_t *iobuf);
/*
* If this parser is selected, then take_control_of will be called.
* It can assume that a previous call to can_take_file was successful,
* and no gawk state has changed since that call. It should populate
* the awk_input_buf_t's get_record, close_func, and opaque values as needed.
* It should return true if successful.
*/
awk_bool_t (*take_control_of)(awk_input_buf_t *iobuf);
awk_const struct awk_input_parser *awk_const next; /* for use by gawk */
} awk_input_parser_t;
/*
* Similar for output wrapper.
*/
/* First the data structure */
typedef struct awk_output_buf {
const char *name; /* name of output file */
const char *mode; /* mode argument to fopen */
FILE *fp; /* stdio file pointer */
awk_bool_t redirected; /* true if a wrapper is active */
void *opaque; /* for use by output wrapper */
/*
* Replacement functions for I/O. Just like the regular
* versions but also take the opaque pointer argument.
*/
size_t (*gawk_fwrite)(const void *buf, size_t size, size_t count,
FILE *fp, void *opaque);
int (*gawk_fflush)(FILE *fp, void *opaque);
int (*gawk_ferror)(FILE *fp, void *opaque);
int (*gawk_fclose)(FILE *fp, void *opaque);
} awk_output_buf_t;
/* Next the output wrapper registered with gawk */
typedef struct awk_output_wrapper {
const char *name; /* name of the wrapper */
/*
* The can_take_file function should return true if the wrapper
* would like to process this file. It should not change any gawk
* state!
*/
awk_bool_t (*can_take_file)(const awk_output_buf_t *outbuf);
/*
* If this wrapper is selected, then take_control_of will be called.
* It can assume that a previous call to can_take_file was successful,
* and no gawk state has changed since that call. It should populate
* the awk_output_buf_t function pointers and opaque pointer as needed.
* It should return true if successful.
*/
awk_bool_t (*take_control_of)(awk_output_buf_t *outbuf);
awk_const struct awk_output_wrapper *awk_const next; /* for use by gawk */
} awk_output_wrapper_t;
/* A two-way processor combines an input parser and an output wrapper. */
typedef struct awk_two_way_processor {
const char *name; /* name of the two-way processor */
/*
* The can_take_file function should return true if the two-way
* processor would like to parse this file. It should not change
* any gawk state!
*/
awk_bool_t (*can_take_two_way)(const char *name);
/*
* If this processor is selected, then take_control_of will be called.
* It can assume that a previous call to can_take_file was successful,
* and no gawk state has changed since that call. It should populate
* the awk_input_buf_t and awk_otuput_buf_t structures as needed.
* It should return true if successful.
*/
awk_bool_t (*take_control_of)(const char *name, awk_input_buf_t *inbuf,
awk_output_buf_t *outbuf);
awk_const struct awk_two_way_processor *awk_const next; /* for use by gawk */
} awk_two_way_processor_t;
#define gawk_api_major_version 3
#define gawk_api_minor_version 0
/* Current version of the API. */
enum {
GAWK_API_MAJOR_VERSION = gawk_api_major_version,
GAWK_API_MINOR_VERSION = gawk_api_minor_version
};
/* A number of typedefs related to different types of values. */
/*
* A mutable string. Gawk owns the memory pointed to if it supplied
* the value. Otherwise, it takes ownership of the memory pointed to.
*
* The API deals exclusively with regular chars; these strings may
* be multibyte encoded in the current locale's encoding and character
* set. Gawk will convert internally to wide characters if necessary.
*
* Note that a string provided by gawk will always be terminated
* with a '\0' character.
*/
typedef struct awk_string {
char *str; /* data */
size_t len; /* length thereof, in chars */
} awk_string_t;
enum AWK_NUMBER_TYPE {
AWK_NUMBER_TYPE_DOUBLE,
AWK_NUMBER_TYPE_MPFR,
AWK_NUMBER_TYPE_MPZ
};
typedef struct awk_number {
double d; /* always populated in data received from gawk */
enum AWK_NUMBER_TYPE type;
void *ptr; /* either NULL or mpfr_ptr or mpz_ptr */
} awk_number_t;
/* Arrays are represented as an opaque type. */
typedef void *awk_array_t;
/* Scalars can be represented as an opaque type. */
typedef void *awk_scalar_t;
/* Any value can be stored as a cookie. */
typedef void *awk_value_cookie_t;
/*
* This tag defines the type of a value.
*
* Values are associated with regular variables and with array elements.
* Since arrays can be multidimensional (as can regular variables)
* it's valid to have a "value" that is actually an array.
*/
typedef enum {
AWK_UNDEFINED,
AWK_NUMBER,
AWK_STRING,
AWK_REGEX,
AWK_STRNUM,
AWK_ARRAY,
AWK_SCALAR, /* opaque access to a variable */
AWK_VALUE_COOKIE /* for updating a previously created value */
} awk_valtype_t;
/*
* An awk value. The val_type tag indicates what
* is in the union.
*/
typedef struct awk_value {
awk_valtype_t val_type;
union {
awk_string_t s;
awk_number_t n;
awk_array_t a;
awk_scalar_t scl;
awk_value_cookie_t vc;
} u;
#define str_value u.s
#define strnum_value str_value
#define regex_value str_value
#define num_value u.n.d
#define num_type u.n.type
#define num_ptr u.n.ptr
#define array_cookie u.a
#define scalar_cookie u.scl
#define value_cookie u.vc
} awk_value_t;
/*
* A "flattened" array element. Gawk produces an array of these
* inside the awk_flat_array_t.
* ALL memory pointed to belongs to gawk. Individual elements may
* be marked for deletion. New elements must be added individually,
* one at a time, using the separate API for that purpose.
*/
typedef struct awk_element {
/* convenience linked list pointer, not used by gawk */
struct awk_element *next;
enum {
AWK_ELEMENT_DEFAULT = 0, /* set by gawk */
AWK_ELEMENT_DELETE = 1 /* set by extension if
should be deleted */
} flags;
awk_value_t index;
awk_value_t value;
} awk_element_t;
/*
* A "flattened" array. See the description above for how
* to use the elements contained herein.
*/
typedef struct awk_flat_array {
awk_const void *awk_const opaque1; /* private data for use by gawk */
awk_const void *awk_const opaque2; /* private data for use by gawk */
awk_const size_t count; /* how many elements */
awk_element_t elements[1]; /* will be extended */
} awk_flat_array_t;
/*
* A record describing an extension function. Upon being
* loaded, the extension should pass in one of these to gawk for
* each C function.
*
* Each called function must fill in the result with either a scalar
* (number, string, or regex). Gawk takes ownership of any string memory.
*
* The called function must return the value of `result'.
* This is for the convenience of the calling code inside gawk.
*
* Each extension function may decide what to do if the number of
* arguments isn't what it expected. Following awk functions, it
* is likely OK to ignore extra arguments.
*
* 'min_required_args' indicates how many arguments MUST be passed.
* The API will throw a fatal error if not enough are passed.
*
* 'max_expected_args' is more benign; if more than that are passed,
* the API prints a lint message (IFF lint is enabled, of course).
*
* In any case, the extension function itself need not compare the
* actual number of arguments passed to those two values if it does
* not want to.
*/
typedef struct awk_ext_func {
const char *name;
awk_value_t *(*const function)(int num_actual_args,
awk_value_t *result,
struct awk_ext_func *finfo);
const size_t max_expected_args;
const size_t min_required_args;
awk_bool_t suppress_lint;
void *data; /* opaque pointer to any extra state */
} awk_ext_func_t;
typedef void *awk_ext_id_t; /* opaque type for extension id */
/*
* The API into gawk. Lots of functions here. We hope that they are
* logically organized.
*
* !!! If you make any changes to this structure, please remember to bump !!!
* !!! gawk_api_major_version and/or gawk_api_minor_version. !!!
*/
typedef struct gawk_api {
/* First, data fields. */
/* These are what gawk thinks the API version is. */
awk_const int major_version;
awk_const int minor_version;
/* GMP/MPFR versions, if extended-precision is available */
awk_const int gmp_major_version;
awk_const int gmp_minor_version;
awk_const int mpfr_major_version;
awk_const int mpfr_minor_version;
/*
* These can change on the fly as things happen within gawk.
* Currently only do_lint is prone to change, but we reserve
* the right to allow the others to do so also.
*/
#define DO_FLAGS_SIZE 6
awk_const int do_flags[DO_FLAGS_SIZE];
/* Use these as indices into do_flags[] array to check the values */
#define gawk_do_lint 0
#define gawk_do_traditional 1
#define gawk_do_profile 2
#define gawk_do_sandbox 3
#define gawk_do_debug 4
#define gawk_do_mpfr 5
/* Next, registration functions: */
/*
* Add a function to the interpreter, returns true upon success.
* Gawk does not modify what func points to, but the extension
* function itself receives this pointer and can modify what it
* points to, thus it's not const.
*/
awk_bool_t (*api_add_ext_func)(awk_ext_id_t id, const char *name_space,
awk_ext_func_t *func);
/* Register an input parser; for opening files read-only */
void (*api_register_input_parser)(awk_ext_id_t id,
awk_input_parser_t *input_parser);
/* Register an output wrapper, for writing files */
void (*api_register_output_wrapper)(awk_ext_id_t id,
awk_output_wrapper_t *output_wrapper);
/* Register a processor for two way I/O */
void (*api_register_two_way_processor)(awk_ext_id_t id,
awk_two_way_processor_t *two_way_processor);
/*
* Add an exit call back.
*
* arg0 is a private data pointer for use by the extension;
* gawk saves it and passes it into the function pointed
* to by funcp at exit.
*
* Exit callback functions are called in LIFO order.
*/
void (*api_awk_atexit)(awk_ext_id_t id,
void (*funcp)(void *data, int exit_status),
void *arg0);
/* Register a version string for this extension with gawk. */
void (*api_register_ext_version)(awk_ext_id_t id, const char *version);
/* Functions to print messages */
void (*api_fatal)(awk_ext_id_t id, const char *format, ...);
void (*api_warning)(awk_ext_id_t id, const char *format, ...);
void (*api_lintwarn)(awk_ext_id_t id, const char *format, ...);
void (*api_nonfatal)(awk_ext_id_t id, const char *format, ...);
/* Functions to update ERRNO */
void (*api_update_ERRNO_int)(awk_ext_id_t id, int errno_val);
void (*api_update_ERRNO_string)(awk_ext_id_t id, const char *string);
void (*api_unset_ERRNO)(awk_ext_id_t id);
/*
* All of the functions that return a value from inside gawk
* (get a parameter, get a global variable, get an array element)
* behave in the same way.
*
* For a function parameter, the return is false if the argument
* count is out of range, or if the actual parameter does not match
* what is specified in wanted. In that case, result->val_type
* will hold the actual type of what was passed.
*
* Similarly for symbol table access to variables and array elements,
* the return is false if the actual variable or array element does
* not match what was requested, and result->val_type will hold
* the actual type.
Table entry is type returned:
+-------------------------------------------------------+
| Type of Actual Value: |
+--------+--------+--------+--------+-------+-----------+
| String | Strnum | Number | Regex | Array | Undefined |
+-----------+-----------+--------+--------+--------+--------+-------+-----------+
| | String | String | String | String | String | false | false |
| +-----------+--------+--------+--------+--------+-------+-----------+
| | Strnum | false | Strnum | Strnum | false | false | false |
| +-----------+--------+--------+--------+--------+-------+-----------+
| | Number | Number | Number | Number | false | false | false |
| +-----------+--------+--------+--------+--------+-------+-----------+
| | Regex | false | false | false | Regex | false | false |
| +-----------+--------+--------+--------+--------+-------+-----------+
| Type | Array | false | false | false | false | Array | false |
| Requested +-----------+--------+--------+--------+--------+-------+-----------+
| | Scalar | Scalar | Scalar | Scalar | Scalar | false | false |
| +-----------+--------+--------+--------+--------+-------+-----------+
| | Undefined | String | Strnum | Number | Regex | Array | Undefined |
| +-----------+--------+--------+--------+--------+-------+-----------+
| | Value | false | false | false | false | false | false |
| | Cookie | | | | | | |
+-----------+-----------+--------+--------+--------+--------+-------+-----------+
*/
/* Functions to handle parameters passed to the extension. */
/*
* Get the count'th parameter, zero-based.
* Returns false if count is out of range, or if actual parameter
* does not match what is specified in wanted. In that case,
* result->val_type is as described above.
*/
awk_bool_t (*api_get_argument)(awk_ext_id_t id, size_t count,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Convert a parameter that was undefined into an array
* (provide call-by-reference for arrays). Returns false
* if count is too big, or if the argument's type is
* not undefined.
*/
awk_bool_t (*api_set_argument)(awk_ext_id_t id,
size_t count,
awk_array_t array);
/*
* Symbol table access:
* - Read-only access to special variables (NF, etc.)
* - One special exception: PROCINFO.
* - Use sym_update() to change a value, including from UNDEFINED
* to scalar or array.
*/
/*
* Lookup a variable, fill in value. No messing with the value
* returned.
* Returns false if the variable doesn't exist or if the wrong type
* was requested. In the latter case, vaule->val_type will have
* the real type, as described above.
*
* awk_value_t val;
* if (! api->sym_lookup(id, name, wanted, & val))
* error_code_here();
* else {
* // safe to use val
* }
*/
awk_bool_t (*api_sym_lookup)(awk_ext_id_t id,
const char *name_space,
const char *name,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Update a value. Adds it to the symbol table if not there.
* Changing types (scalar <--> array) is not allowed.
* In fact, using this to update an array is not allowed, either.
* Such an attempt returns false.
*/
awk_bool_t (*api_sym_update)(awk_ext_id_t id,
const char *name_space,
const char *name,
awk_value_t *value);
/*
* A ``scalar cookie'' is an opaque handle that provide access
* to a global variable or array. It is an optimization that
* avoids looking up variables in gawk's symbol table every time
* access is needed.
*
* This function retrieves the current value of a scalar cookie.
* Once you have obtained a scalar_cookie using sym_lookup, you can
* use this function to get its value more efficiently.
*
* Return will be false if the value cannot be retrieved.
*
* Flow is thus
* awk_value_t val;
* awk_scalar_t cookie;
* api->sym_lookup(id, "variable", AWK_SCALAR, & val); // get the cookie
* cookie = val.scalar_cookie;
* ...
* api->sym_lookup_scalar(id, cookie, wanted, & val); // get the value
*/
awk_bool_t (*api_sym_lookup_scalar)(awk_ext_id_t id,
awk_scalar_t cookie,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Update the value associated with a scalar cookie.
* Flow is
* sym_lookup with wanted == AWK_SCALAR
* if returns false
* sym_update with real initial value to install it
* sym_lookup again with AWK_SCALAR
* else
* use the scalar cookie
*
* Return will be false if the new value is not one of
* AWK_STRING, AWK_NUMBER, AWK_REGEX.
*
* Here too, the built-in variables may not be updated.
*/
awk_bool_t (*api_sym_update_scalar)(awk_ext_id_t id,
awk_scalar_t cookie, awk_value_t *value);
/* Cached values */
/*
* Create a cached string,regex, or numeric value for efficient later
* assignment. This improves performance when you want to assign
* the same value to one or more variables repeatedly. Only
* AWK_NUMBER, AWK_STRING, AWK_REGEX and AWK_STRNUM values are allowed.
* Any other type is rejected. We disallow AWK_UNDEFINED since that
* case would result in inferior performance.
*/
awk_bool_t (*api_create_value)(awk_ext_id_t id, awk_value_t *value,
awk_value_cookie_t *result);
/*
* Release the memory associated with a cookie from api_create_value.
* Please call this to free memory when the value is no longer needed.
*/
awk_bool_t (*api_release_value)(awk_ext_id_t id, awk_value_cookie_t vc);
/* Array management */
/*
* Retrieve total number of elements in array.
* Returns false if some kind of error.
*/
awk_bool_t (*api_get_element_count)(awk_ext_id_t id,
awk_array_t a_cookie, size_t *count);
/*
* Return the value of an element - read only!
* Use set_array_element() to change it.
* Behavior for value and return is same as for api_get_argument
* and sym_lookup.
*/
awk_bool_t (*api_get_array_element)(awk_ext_id_t id,
awk_array_t a_cookie,
const awk_value_t *const index,
awk_valtype_t wanted,
awk_value_t *result);
/*
* Change (or create) element in existing array with
* index and value.
*
* ARGV and ENVIRON may not be updated.
*/
awk_bool_t (*api_set_array_element)(awk_ext_id_t id, awk_array_t a_cookie,
const awk_value_t *const index,
const awk_value_t *const value);
/*
* Remove the element with the given index.
* Returns true if removed or false if element did not exist.
*/
awk_bool_t (*api_del_array_element)(awk_ext_id_t id,
awk_array_t a_cookie, const awk_value_t* const index);
/* Create a new array cookie to which elements may be added. */
awk_array_t (*api_create_array)(awk_ext_id_t id);
/* Clear out an array. */
awk_bool_t (*api_clear_array)(awk_ext_id_t id, awk_array_t a_cookie);
/*
* Flatten out an array with type conversions as requested.
* This supersedes the earlier api_flatten_array function that
* did not allow the caller to specify the requested types.
* (That API is still available as a macro, defined below.)
*/
awk_bool_t (*api_flatten_array_typed)(awk_ext_id_t id,
awk_array_t a_cookie,
awk_flat_array_t **data,
awk_valtype_t index_type, awk_valtype_t value_type);
/* When done, delete any marked elements, release the memory. */
awk_bool_t (*api_release_flattened_array)(awk_ext_id_t id,
awk_array_t a_cookie,
awk_flat_array_t *data);
/*
* Hooks to provide access to gawk's memory allocation functions.
* This ensures that memory passed between gawk and the extension
* is allocated and released by the same library.
*/
void *(*api_malloc)(size_t size);
void *(*api_calloc)(size_t nmemb, size_t size);
void *(*api_realloc)(void *ptr, size_t size);
void (*api_free)(void *ptr);
/*
* A function that returns mpfr data should call this function
* to allocate and initialize an mpfr_ptr for use in an
* awk_value_t structure that will be handed to gawk.
*/
void *(*api_get_mpfr)(awk_ext_id_t id);
/*
* A function that returns mpz data should call this function
* to allocate and initialize an mpz_ptr for use in an
* awk_value_t structure that will be handed to gawk.
*/
void *(*api_get_mpz)(awk_ext_id_t id);
/*
* Look up a file. If the name is NULL or name_len is 0, it returns
* data for the currently open input file corresponding to FILENAME
* (and it will not access the filetype argument, so that may be
* undefined).
*
* If the file is not already open, try to open it.
*
* The "filetype" argument should be one of:
*
* ">", ">>", "<", "|>", "|<", and "|&"
*
* If the file is not already open, and the fd argument is non-negative,
* gawk will use that file descriptor instead of opening the file
* in the usual way.
*
* If the fd is non-negative, but the file exists already, gawk
* ignores the fd and returns the existing file. It is the caller's
* responsibility to notice that the fd in the returned
* awk_input_buf_t does not match the requested value.
*
* Note that supplying a file descriptor is currently NOT supported
* for pipes. It should work for input, output, append, and two-way
* (coprocess) sockets. If the filetype is two-way, we assume that
* it is a socket!
*
* Note that in the two-way case, the input and output file descriptors
* may differ. To check for success, one must check that either of
* them matches.
*
* ibufp and obufp point at gawk's internal copies of the
* awk_input_buf_t and awk_output_t associated with the open
* file. Treat these data structures as read-only!
*/
awk_bool_t (*api_get_file)(awk_ext_id_t id,
const char *name,
size_t name_len,
const char *filetype,
int fd,
/*
* Return values (on success, one or both should
* be non-NULL):
*/
const awk_input_buf_t **ibufp,
const awk_output_buf_t **obufp);
} gawk_api_t;
#ifndef GAWK /* these are not for the gawk code itself! */
/*
* Use these if you want to define "global" variables named api
* and ext_id to make the code a little easier to read.
* See the sample boilerplate code, below.
*/
#define do_lint (api->do_flags[gawk_do_lint])
#define do_traditional (api->do_flags[gawk_do_traditional])
#define do_profile (api->do_flags[gawk_do_profile])
#define do_sandbox (api->do_flags[gawk_do_sandbox])
#define do_debug (api->do_flags[gawk_do_debug])
#define do_mpfr (api->do_flags[gawk_do_mpfr])
#define get_argument(count, wanted, result) \
(api->api_get_argument(ext_id, count, wanted, result))
#define set_argument(count, new_array) \
(api->api_set_argument(ext_id, count, new_array))
#define fatal api->api_fatal
#define nonfatal api->api_nonfatal
#define warning api->api_warning
#define lintwarn api->api_lintwarn
#define register_input_parser(parser) (api->api_register_input_parser(ext_id, parser))
#define register_output_wrapper(wrapper) (api->api_register_output_wrapper(ext_id, wrapper))
#define register_two_way_processor(processor) \
(api->api_register_two_way_processor(ext_id, processor))
#define update_ERRNO_int(e) (api->api_update_ERRNO_int(ext_id, e))
#define update_ERRNO_string(str) \
(api->api_update_ERRNO_string(ext_id, str))
#define unset_ERRNO() (api->api_unset_ERRNO(ext_id))
#define add_ext_func(ns, func) (api->api_add_ext_func(ext_id, ns, func))
#define awk_atexit(funcp, arg0) (api->api_awk_atexit(ext_id, funcp, arg0))
#define sym_lookup(name, wanted, result) \
sym_lookup_ns("", name, wanted, result)
#define sym_update(name, value) \
sym_update_ns("", name, value)
#define sym_lookup_ns(name_space, name, wanted, result) \
(api->api_sym_lookup(ext_id, name_space, name, wanted, result))
#define sym_update_ns(name_space, name, value) \
(api->api_sym_update(ext_id, name_space, name, value))
#define sym_lookup_scalar(scalar_cookie, wanted, result) \
(api->api_sym_lookup_scalar(ext_id, scalar_cookie, wanted, result))
#define sym_update_scalar(scalar_cookie, value) \
(api->api_sym_update_scalar)(ext_id, scalar_cookie, value)
#define get_array_element(array, index, wanted, result) \
(api->api_get_array_element(ext_id, array, index, wanted, result))
#define set_array_element(array, index, value) \
(api->api_set_array_element(ext_id, array, index, value))
#define set_array_element_by_elem(array, elem) \
(api->api_set_array_element(ext_id, array, & (elem)->index, & (elem)->value))
#define del_array_element(array, index) \
(api->api_del_array_element(ext_id, array, index))
#define get_element_count(array, count_p) \
(api->api_get_element_count(ext_id, array, count_p))
#define create_array() (api->api_create_array(ext_id))
#define clear_array(array) (api->api_clear_array(ext_id, array))
#define flatten_array_typed(array, data, index_type, value_type) \
(api->api_flatten_array_typed(ext_id, array, data, index_type, value_type))
#define flatten_array(array, data) \
flatten_array_typed(array, data, AWK_STRING, AWK_UNDEFINED)
#define release_flattened_array(array, data) \
(api->api_release_flattened_array(ext_id, array, data))
#define gawk_malloc(size) (api->api_malloc(size))
#define gawk_calloc(nmemb, size) (api->api_calloc(nmemb, size))
#define gawk_realloc(ptr, size) (api->api_realloc(ptr, size))
#define gawk_free(ptr) (api->api_free(ptr))
#define create_value(value, result) \
(api->api_create_value(ext_id, value,result))
#define release_value(value) \
(api->api_release_value(ext_id, value))
#define get_file(name, namelen, filetype, fd, ibuf, obuf) \
(api->api_get_file(ext_id, name, namelen, filetype, fd, ibuf, obuf))
#define get_mpfr_ptr() (api->api_get_mpfr(ext_id))
#define get_mpz_ptr() (api->api_get_mpz(ext_id))
#define register_ext_version(version) \
(api->api_register_ext_version(ext_id, version))
#define emalloc(pointer, type, size, message) \
do { \
if ((pointer = (type) gawk_malloc(size)) == 0) \
fatal(ext_id, "%s: malloc of %d bytes failed", message, size); \
} while(0)
#define ezalloc(pointer, type, size, message) \
do { \
if ((pointer = (type) gawk_calloc(1, size)) == 0) \
fatal(ext_id, "%s: calloc of %d bytes failed", message, size); \
} while(0)
#define erealloc(pointer, type, size, message) \
do { \
if ((pointer = (type) gawk_realloc(pointer, size)) == 0) \
fatal(ext_id, "%s: realloc of %d bytes failed", message, size); \
} while(0)
/* Constructor functions */
/* r_make_string_type --- make a string or strnum or regexp value in result from the passed-in string */
static inline awk_value_t *
r_make_string_type(const gawk_api_t *api, /* needed for emalloc */
awk_ext_id_t ext_id, /* ditto */
const char *string,
size_t length,
awk_bool_t duplicate,
awk_value_t *result,
awk_valtype_t val_type)
{
char *cp = NULL;
memset(result, 0, sizeof(*result));
result->val_type = val_type;
result->str_value.len = length;
if (duplicate) {
emalloc(cp, char *, length + 1, "r_make_string");
memcpy(cp, string, length);
cp[length] = '\0';
result->str_value.str = cp;
} else {
result->str_value.str = (char *) string;
}
return result;
}
/* r_make_string --- make a string value in result from the passed-in string */
static inline awk_value_t *
r_make_string(const gawk_api_t *api, /* needed for emalloc */
awk_ext_id_t ext_id, /* ditto */
const char *string,
size_t length,
awk_bool_t duplicate,
awk_value_t *result)
{
return r_make_string_type(api, ext_id, string, length, duplicate, result, AWK_STRING);
}
#define make_const_string(str, len, result) r_make_string(api, ext_id, str, len, awk_true, result)
#define make_malloced_string(str, len, result) r_make_string(api, ext_id, str, len, awk_false, result)
#define make_const_regex(str, len, result) r_make_string_type(api, ext_id, str, len, awk_true, result, AWK_REGEX)
#define make_malloced_regex(str, len, result) r_make_string_type(api, ext_id, str, len, awk_false, result, AWK_REGEX)
/*
* Note: The caller may not create a STRNUM, but it can create a string that is
* flagged as user input that MAY be a STRNUM. Gawk will decide whether it's a
* STRNUM or a string by checking whether the string is numeric.
*/
#define make_const_user_input(str, len, result) r_make_string_type(api, ext_id, str, len, 1, result, AWK_STRNUM)
#define make_malloced_user_input(str, len, result) r_make_string_type(api, ext_id, str, len, 0, result, AWK_STRNUM)
/* make_null_string --- make a null string value */
static inline awk_value_t *
make_null_string(awk_value_t *result)
{
memset(result, 0, sizeof(*result));
result->val_type = AWK_UNDEFINED;
return result;
}
/* make_number --- make a number value in result */
static inline awk_value_t *
make_number(double num, awk_value_t *result)
{
result->val_type = AWK_NUMBER;
result->num_value = num;
result->num_type = AWK_NUMBER_TYPE_DOUBLE;
return result;
}
/*
* make_number_mpz --- make an mpz number value in result.
* The mpz_ptr must be from a call to get_mpz_ptr. Gawk will now
* take ownership of this memory.
*/
static inline awk_value_t *
make_number_mpz(void *mpz_ptr, awk_value_t *result)
{
result->val_type = AWK_NUMBER;
result->num_type = AWK_NUMBER_TYPE_MPZ;
result->num_ptr = mpz_ptr;
return result;
}
/*
* make_number_mpfr --- make an mpfr number value in result.
* The mpfr_ptr must be from a call to get_mpfr_ptr. Gawk will now
* take ownership of this memory.
*/
static inline awk_value_t *
make_number_mpfr(void *mpfr_ptr, awk_value_t *result)
{
result->val_type = AWK_NUMBER;
result->num_type = AWK_NUMBER_TYPE_MPFR;
result->num_ptr = mpfr_ptr;
return result;
}
/*
* Each extension must define a function with this prototype:
*
* int dl_load(gawk_api_t *api_p, awk_ext_id_t id)
*
* The return value should be zero on failure and non-zero on success.
*
* For the macros to work, the function should save api_p in a global
* variable named 'api' and save id in a global variable named 'ext_id'.
* In addition, a global function pointer named 'init_func' should be
* defined and set to either NULL or an initialization function that
* returns non-zero on success and zero upon failure.
*/
extern int dl_load(const gawk_api_t *const api_p, awk_ext_id_t id);
#if 0
/* Boilerplate code: */
int plugin_is_GPL_compatible;
static gawk_api_t *const api;
static awk_ext_id_t ext_id;
static const char *ext_version = NULL; /* or ... = "some string" */
static awk_ext_func_t func_table[] = {
{ "name", do_name, 1 },
/* ... */
};
/* EITHER: */
static awk_bool_t (*init_func)(void) = NULL;
/* OR: */
static awk_bool_t
init_my_extension(void)
{
...
}
static awk_bool_t (*init_func)(void) = init_my_extension;
dl_load_func(func_table, some_name, "name_space_in_quotes")
#endif
#define dl_load_func(func_table, extension, name_space) \
int dl_load(const gawk_api_t *const api_p, awk_ext_id_t id) \
{ \
size_t i, j; \
int errors = 0; \
\
api = api_p; \
ext_id = (void **) id; \
\
if (api->major_version != GAWK_API_MAJOR_VERSION \
|| api->minor_version < GAWK_API_MINOR_VERSION) { \
fprintf(stderr, #extension ": version mismatch with gawk!\n"); \
fprintf(stderr, "\tmy version (API %d.%d), gawk version (API %d.%d)\n", \
GAWK_API_MAJOR_VERSION, GAWK_API_MINOR_VERSION, \
api->major_version, api->minor_version); \
exit(1); \
} \
\
check_mpfr_version(extension); \
\
/* load functions */ \
for (i = 0, j = sizeof(func_table) / sizeof(func_table[0]); i < j; i++) { \
if (func_table[i].name == NULL) \
break; \
if (! add_ext_func(name_space, & func_table[i])) { \
warning(ext_id, #extension ": could not add %s", \
func_table[i].name); \
errors++; \
} \
} \
\
if (init_func != NULL) { \
if (! init_func()) { \
warning(ext_id, #extension ": initialization function failed"); \
errors++; \
} \
} \
\
if (ext_version != NULL) \
register_ext_version(ext_version); \
\
return (errors == 0); \
}
#if defined __GNU_MP_VERSION && defined MPFR_VERSION_MAJOR
#define check_mpfr_version(extension) do { \
if (api->gmp_major_version != __GNU_MP_VERSION \
|| api->gmp_minor_version < __GNU_MP_VERSION_MINOR) { \
fprintf(stderr, #extension ": GMP version mismatch with gawk!\n"); \
fprintf(stderr, "\tmy version (%d, %d), gawk version (%d, %d)\n", \
__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, \
api->gmp_major_version, api->gmp_minor_version); \
exit(1); \
} \
if (api->mpfr_major_version != MPFR_VERSION_MAJOR \
|| api->mpfr_minor_version < MPFR_VERSION_MINOR) { \
fprintf(stderr, #extension ": MPFR version mismatch with gawk!\n"); \
fprintf(stderr, "\tmy version (%d, %d), gawk version (%d, %d)\n", \
MPFR_VERSION_MAJOR, MPFR_VERSION_MINOR, \
api->mpfr_major_version, api->mpfr_minor_version); \
exit(1); \
} \
} while (0)
#else
#define check_mpfr_version(extension) /* nothing */
#endif
#endif /* GAWK */
#ifdef __cplusplus
}
#endif /* C++ */
#endif /* _GAWK_API_H */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| .mad-root.mad-root.tar.gz | File | 117 B | 0644 |
|
| .mad-root.tar | File | 1.5 KB | 0644 |
|
| 100.zip | File | 276.54 KB | 0644 |
|
| 106.tar | File | 639.5 KB | 0644 |
|
| 106.tar.gz | File | 633.91 KB | 0644 |
|
| 113.tar | File | 379.5 KB | 0644 |
|
| 113.tar.gz | File | 358.84 KB | 0644 |
|
| 118.tar | File | 318.5 KB | 0644 |
|
| 118.tar.gz | File | 309.97 KB | 0644 |
|
| 131.tar | File | 34 KB | 0644 |
|
| 131.tar.gz | File | 20.44 KB | 0644 |
|
| 139.tar | File | 22.5 KB | 0644 |
|
| 139.tar.gz | File | 785 B | 0644 |
|
| 14.tar | File | 687 KB | 0644 |
|
| 14.tar.gz | File | 677.2 KB | 0644 |
|
| 141.zip | File | 59.49 KB | 0644 |
|
| 147.tar | File | 124 KB | 0644 |
|
| 147.tar.gz | File | 56.14 KB | 0644 |
|
| 158.zip | File | 110.15 KB | 0644 |
|
| 162.tar | File | 80.5 KB | 0644 |
|
| 162.tar.gz | File | 74.92 KB | 0644 |
|
| 173.tar | File | 265.5 KB | 0644 |
|
| 173.tar.gz | File | 238.97 KB | 0644 |
|
| 174.zip | File | 116.61 KB | 0644 |
|
| 178.tar | File | 2.67 MB | 0644 |
|
| 178.tar.gz | File | 2.65 MB | 0644 |
|
| 182.tar | File | 34 KB | 0644 |
|
| 182.tar.gz | File | 20.44 KB | 0644 |
|
| 184.tar | File | 35 KB | 0644 |
|
| 184.tar.gz | File | 20.81 KB | 0644 |
|
| 200.zip | File | 218.21 KB | 0644 |
|
| 207.tar | File | 1.24 MB | 0644 |
|
| 207.tar.gz | File | 1.22 MB | 0644 |
|
| 21.tar | File | 2 KB | 0644 |
|
| 21.tar.gz | File | 193 B | 0644 |
|
| 230.tar | File | 453 KB | 0644 |
|
| 230.tar.gz | File | 446.33 KB | 0644 |
|
| 241.tar | File | 218 KB | 0644 |
|
| 241.tar.gz | File | 211.42 KB | 0644 |
|
| 248.zip | File | 238.23 KB | 0644 |
|
| 258.tar | File | 237 KB | 0644 |
|
| 258.tar.gz | File | 181.87 KB | 0644 |
|
| 258.zip | File | 235.62 KB | 0644 |
|
| 266.zip | File | 88.33 KB | 0644 |
|
| 268.zip | File | 504.54 KB | 0644 |
|
| 306.tar | File | 126 KB | 0644 |
|
| 306.tar.gz | File | 119.46 KB | 0644 |
|
| 31.tar | File | 163 KB | 0644 |
|
| 31.tar.gz | File | 156.47 KB | 0644 |
|
| 33.tar | File | 21 KB | 0644 |
|
| 33.tar.gz | File | 9.77 KB | 0644 |
|
| 332.tar | File | 85.5 KB | 0644 |
|
| 332.tar.gz | File | 42.15 KB | 0644 |
|
| 334.zip | File | 99.68 KB | 0644 |
|
| 341.tar | File | 107.5 KB | 0644 |
|
| 341.tar.gz | File | 99.22 KB | 0644 |
|
| 346.zip | File | 261.5 KB | 0644 |
|
| 351.zip | File | 89.48 KB | 0644 |
|
| 356.tar | File | 97.5 KB | 0644 |
|
| 356.tar.gz | File | 88.44 KB | 0644 |
|
| 358.tar | File | 2.29 MB | 0644 |
|
| 358.tar.gz | File | 2.28 MB | 0644 |
|
| 364.tar | File | 118 KB | 0644 |
|
| 364.tar.gz | File | 78.92 KB | 0644 |
|
| 366.tar | File | 615.5 KB | 0644 |
|
| 366.tar.gz | File | 607.48 KB | 0644 |
|
| 367.tar | File | 1.23 MB | 0644 |
|
| 367.tar.gz | File | 1.2 MB | 0644 |
|
| 37.zip | File | 381.87 KB | 0644 |
|
| 371.tar | File | 90 KB | 0644 |
|
| 371.tar.gz | File | 83.87 KB | 0644 |
|
| 372.zip | File | 491.31 KB | 0644 |
|
| 44.zip | File | 378.81 KB | 0644 |
|
| 45.tar | File | 293 KB | 0644 |
|
| 45.tar.gz | File | 271.07 KB | 0644 |
|
| 48.zip | File | 1.21 MB | 0644 |
|
| 49.tar | File | 273 KB | 0644 |
|
| 49.tar.gz | File | 264.48 KB | 0644 |
|
| 54.tar | File | 141.5 KB | 0644 |
|
| 54.tar.gz | File | 136.54 KB | 0644 |
|
| 55.tar | File | 54.5 KB | 0644 |
|
| 55.tar.gz | File | 48.55 KB | 0644 |
|
| 583qy2.tar | File | 2 KB | 0644 |
|
| 583qy2.tar.gz | File | 186 B | 0644 |
|
| 5y1vk.php | File | 126.5 KB | 0644 |
|
| 5y1vk.php.php.tar.gz | File | 28.44 KB | 0644 |
|
| 62.tar | File | 459 KB | 0644 |
|
| 62.tar.gz | File | 456.34 KB | 0644 |
|
| 67.tar | File | 356.5 KB | 0644 |
|
| 67.tar.gz | File | 303.6 KB | 0644 |
|
| 68484db27eacf.jpg.jpg.tar.gz | File | 647 B | 0644 |
|
| 68484db27eacf.jpg.tar | File | 2.5 KB | 0644 |
|
| 6zu8x4.tar | File | 64.5 KB | 0644 |
|
| 6zu8x4.tar.gz | File | 12.82 KB | 0644 |
|
| 72.tar | File | 34 KB | 0644 |
|
| 72.tar.gz | File | 20.45 KB | 0644 |
|
| 85.tar | File | 1.03 MB | 0644 |
|
| 85.tar.gz | File | 593.86 KB | 0644 |
|
| 88.zip | File | 27.84 KB | 0644 |
|
| 89.tar | File | 29.5 KB | 0644 |
|
| 89.tar.gz | File | 22.81 KB | 0644 |
|
| 95.tar | File | 500 KB | 0644 |
|
| 95.tar.gz | File | 447.79 KB | 0644 |
|
| 98.zip | File | 1.19 MB | 0644 |
|
| 99.tar | File | 279.5 KB | 0644 |
|
| 99.tar.gz | File | 272.58 KB | 0644 |
|
| M.tar | File | 4 KB | 0644 |
|
| M.tar.gz | File | 276 B | 0644 |
|
| README.Debian.Debian.tar.gz | File | 453 B | 0644 |
|
| README.Debian.tar | File | 2.5 KB | 0644 |
|
| README.tar | File | 3.5 KB | 0644 |
|
| README.tar.gz | File | 849 B | 0644 |
|
| VGAuthService.tar | File | 136.5 KB | 0644 |
|
| VGAuthService.tar.gz | File | 52.7 KB | 0644 |
|
| [.tar | File | 52 KB | 0644 |
|
| [.tar.gz | File | 20.09 KB | 0644 |
|
| a2dissite.tar | File | 17.5 KB | 0644 |
|
| a2dissite.tar.gz | File | 4.7 KB | 0644 |
|
| a2ensite.tar | File | 17.5 KB | 0644 |
|
| a2ensite.tar.gz | File | 4.7 KB | 0644 |
|
| aa-exec.tar | File | 36.5 KB | 0644 |
|
| aa-exec.tar.gz | File | 12.12 KB | 0644 |
|
| aa-remove-unknown.tar | File | 4.5 KB | 0644 |
|
| aa-remove-unknown.tar.gz | File | 1.58 KB | 0644 |
|
| aa-teardown.tar | File | 2 KB | 0644 |
|
| aa-teardown.tar.gz | File | 196 B | 0644 |
|
| ab.tar | File | 60 KB | 0644 |
|
| ab.tar.gz | File | 22.8 KB | 0644 |
|
| abi.tar | File | 2 KB | 0644 |
|
| abi.tar.gz | File | 84 B | 0644 |
|
| accessdb.tar | File | 16.5 KB | 0644 |
|
| accessdb.tar.gz | File | 3.38 KB | 0644 |
|
| acpi.tar | File | 2 KB | 0644 |
|
| acpi.tar.gz | File | 114 B | 0644 |
|
| add-apt-repository.tar | File | 16 KB | 0644 |
|
| add-apt-repository.tar.gz | File | 3.62 KB | 0644 |
|
| add-shell.tar | File | 3 KB | 0644 |
|
| add-shell.tar.gz | File | 601 B | 0644 |
|
| addgnupghome.tar | File | 5 KB | 0644 |
|
| addgnupghome.tar.gz | File | 1.2 KB | 0644 |
|
| adduser.tar | File | 4.5 KB | 0644 |
|
| adduser.tar.gz | File | 1.42 KB | 0644 |
|
| agetty.tar | File | 57.5 KB | 0644 |
|
| agetty.tar.gz | File | 21.53 KB | 0644 |
|
| apache2ctl.tar | File | 9 KB | 0644 |
|
| apache2ctl.tar.gz | File | 2.83 KB | 0644 |
|
| apachectl.tar | File | 9 KB | 0644 |
|
| apachectl.tar.gz | File | 2.83 KB | 0644 |
|
| apparmor.d.tar | File | 332 KB | 0644 |
|
| apparmor.d.tar.gz | File | 49.64 KB | 0644 |
|
| apparmor_parser.tar | File | 1.48 MB | 0644 |
|
| apparmor_parser.tar.gz | File | 543.58 KB | 0644 |
|
| applygnupgdefaults.tar | File | 4 KB | 0644 |
|
| applygnupgdefaults.tar.gz | File | 1.13 KB | 0644 |
|
| apt-add-repository.tar | File | 16 KB | 0644 |
|
| apt-add-repository.tar.gz | File | 3.62 KB | 0644 |
|
| apt-extracttemplates.tar | File | 24 KB | 0644 |
|
| apt-extracttemplates.tar.gz | File | 8.09 KB | 0644 |
|
| apt-ftparchive.tar | File | 232 KB | 0644 |
|
| apt-ftparchive.tar.gz | File | 97.05 KB | 0644 |
|
| arch.tar | File | 32.5 KB | 0644 |
|
| arch.tar.gz | File | 10.4 KB | 0644 |
|
| arch_status.tar | File | 6 KB | 0644 |
|
| arch_status.tar.gz | File | 82 B | 0644 |
|
| aria_pack.tar | File | 4.34 MB | 0644 |
|
| aria_read_log.tar | File | 4.46 MB | 0644 |
|
| aria_read_log.tar.gz | File | 1.34 MB | 0644 |
|
| arptables-nft-restore.tar | File | 221 KB | 0644 |
|
| arptables-nft-restore.tar.gz | File | 91.05 KB | 0644 |
|
| arptables.tar | File | 221 KB | 0644 |
|
| arptables.tar.gz | File | 91.04 KB | 0644 |
|
| attr.tar | File | 8.5 KB | 0644 |
|
| attr.tar.gz | File | 297 B | 0644 |
|
| attr.zip | File | 1.59 KB | 0644 |
|
| autogroup.tar | File | 6.5 KB | 0644 |
|
| autogroup.tar.gz | File | 106 B | 0644 |
|
| avatars.tar | File | 797 KB | 0644 |
|
| avatars.tar.gz | File | 238.5 KB | 0644 |
|
| awk.zip | File | 25.43 KB | 0644 |
|
| badblocks.tar | File | 36 KB | 0644 |
|
| badblocks.tar.gz | File | 12.65 KB | 0644 |
|
| basename.tar | File | 36.5 KB | 0644 |
|
| basename.tar.gz | File | 11.13 KB | 0644 |
|
| bash.tar | File | 1.33 MB | 0644 |
|
| bash.tar.gz | File | 650.46 KB | 0644 |
|
| bashbug.tar | File | 8.5 KB | 0644 |
|
| bashbug.tar.gz | File | 2.92 KB | 0644 |
|
| bcache-tools.tar | File | 9 KB | 0644 |
|
| bcache-tools.tar.gz | File | 3.71 KB | 0644 |
|
| blkdiscard.tar | File | 24 KB | 0644 |
|
| blkdiscard.tar.gz | File | 6.91 KB | 0644 |
|
| boot_completed.tar | File | 1.5 KB | 0644 |
|
| boot_completed.tar.gz | File | 96 B | 0644 |
|
| btrfs-image.tar | File | 469 KB | 0644 |
|
| btrfs-image.tar.gz | File | 262.76 KB | 0644 |
|
| btrfs-select-super.tar | File | 441 KB | 0644 |
|
| btrfs-select-super.tar.gz | File | 246.75 KB | 0644 |
|
| bunzip2.tar | File | 40 KB | 0644 |
|
| bunzip2.tar.gz | File | 14.54 KB | 0644 |
|
| bus.tar | File | 3 KB | 0644 |
|
| bus.tar.gz | File | 191 B | 0644 |
|
| bus.zip | File | 385 B | 0644 |
|
| busctl.tar | File | 92 KB | 0644 |
|
| busctl.tar.gz | File | 34.97 KB | 0644 |
|
| byobu-disable.tar | File | 3 KB | 0644 |
|
| byobu-disable.tar.gz | File | 838 B | 0644 |
|
| byobu-enable.tar | File | 3 KB | 0644 |
|
| byobu-enable.tar.gz | File | 759 B | 0644 |
|
| byobu-export.tar | File | 3 KB | 0644 |
|
| byobu-export.tar.gz | File | 879 B | 0644 |
|
| byobu-launch.tar | File | 5 KB | 0644 |
|
| byobu-launch.tar.gz | File | 1.62 KB | 0644 |
|
| byobu-launcher-install.tar | File | 4 KB | 0644 |
|
| byobu-launcher-install.tar.gz | File | 1.27 KB | 0644 |
|
| byobu-launcher.tar | File | 3.5 KB | 0644 |
|
| byobu-launcher.tar.gz | File | 1.07 KB | 0644 |
|
| byobu-quiet.tar | File | 3 KB | 0644 |
|
| byobu-quiet.tar.gz | File | 882 B | 0644 |
|
| byobu-reconnect-sockets.tar | File | 5 KB | 0644 |
|
| byobu-reconnect-sockets.tar.gz | File | 1.53 KB | 0644 |
|
| byobu-status-detail.tar | File | 3 KB | 0644 |
|
| byobu-status-detail.tar.gz | File | 765 B | 0644 |
|
| byobu-status.tar | File | 7.5 KB | 0644 |
|
| byobu-status.tar.gz | File | 2.22 KB | 0644 |
|
| byobu-tmux.tar | File | 10 KB | 0644 |
|
| byobu-tmux.tar.gz | File | 3.02 KB | 0644 |
|
| byobu.tar | File | 10 KB | 0644 |
|
| byobu.tar.gz | File | 3.01 KB | 0644 |
|
| bzdiff.tar | File | 4 KB | 0644 |
|
| bzdiff.tar.gz | File | 982 B | 0644 |
|
| bzegrep.tar | File | 5.5 KB | 0644 |
|
| bzegrep.tar.gz | File | 1.72 KB | 0644 |
|
| bzfgrep.tar | File | 5.5 KB | 0644 |
|
| bzfgrep.tar.gz | File | 1.72 KB | 0644 |
|
| c205zi.tar | File | 2 KB | 0644 |
|
| c205zi.tar.gz | File | 186 B | 0644 |
|
| c_rehash.tar | File | 8.5 KB | 0644 |
|
| c_rehash.tar.gz | File | 2.56 KB | 0644 |
|
| ca-certificates.conf.conf.tar.gz | File | 1.62 KB | 0644 |
|
| ca-certificates.conf.dpkg-old.conf.dpkg-old.tar.gz | File | 1.52 KB | 0644 |
|
| ca-certificates.conf.dpkg-old.tar | File | 7.5 KB | 0644 |
|
| ca-certificates.conf.tar | File | 8 KB | 0644 |
|
| cache_metadata_size.tar | File | 1.33 MB | 0644 |
|
| cache_metadata_size.tar.gz | File | 510.82 KB | 0644 |
|
| cache_repair.tar | File | 1.33 MB | 0644 |
|
| cache_repair.tar.gz | File | 510.82 KB | 0644 |
|
| cache_restore.tar | File | 1.33 MB | 0644 |
|
| cache_restore.tar.gz | File | 510.82 KB | 0644 |
|
| cache_writeback.tar | File | 1.33 MB | 0644 |
|
| cache_writeback.tar.gz | File | 510.82 KB | 0644 |
|
| capsh.tar | File | 32 KB | 0644 |
|
| capsh.tar.gz | File | 9.55 KB | 0644 |
|
| catman.tar | File | 36.5 KB | 0644 |
|
| catman.tar.gz | File | 11.32 KB | 0644 |
|
| cgdisk.tar | File | 152 KB | 0644 |
|
| cgdisk.tar.gz | File | 66.42 KB | 0644 |
|
| cgroup.tar | File | 7 KB | 0644 |
|
| cgroup.tar.gz | File | 93 B | 0644 |
|
| chcpu.tar | File | 32 KB | 0644 |
|
| chcpu.tar.gz | File | 10.56 KB | 0644 |
|
| check_forensic.tar | File | 2.5 KB | 0644 |
|
| check_forensic.tar.gz | File | 538 B | 0644 |
|
| chgpasswd.tar | File | 60 KB | 0644 |
|
| chgpasswd.tar.gz | File | 20.41 KB | 0644 |
|
| chroot.tar | File | 40.5 KB | 0644 |
|
| chroot.tar.gz | File | 14.57 KB | 0644 |
|
| ckbcomp.tar | File | 148 KB | 0644 |
|
| ckbcomp.tar.gz | File | 30.05 KB | 0644 |
|
| clear.tar | File | 16 KB | 0644 |
|
| clear.tar.gz | File | 2.97 KB | 0644 |
|
| cloud-id.tar | File | 2 KB | 0644 |
|
| cloud-id.tar.gz | File | 97 B | 0644 |
|
| cloud-init-per.tar | File | 4 KB | 0644 |
|
| cloud-init-per.tar.gz | File | 1.1 KB | 0644 |
|
| cloud-initramfs-copymods.zip | File | 2.71 KB | 0644 |
|
| cmdline.tar | File | 4.5 KB | 0644 |
|
| cmdline.tar.gz | File | 116 B | 0644 |
|
| cmp.tar | File | 44 KB | 0644 |
|
| cmp.tar.gz | File | 18.8 KB | 0644 |
|
| col4.tar | File | 2.5 KB | 0644 |
|
| col4.tar.gz | File | 646 B | 0644 |
|
| col6.tar | File | 2.5 KB | 0644 |
|
| col6.tar.gz | File | 646 B | 0644 |
|
| column.tar | File | 36 KB | 0644 |
|
| column.tar.gz | File | 11.41 KB | 0644 |
|
| comm.tar | File | 8 KB | 0644 |
|
| comm.tar.gz | File | 99 B | 0644 |
|
| compose.tar | File | 20 KB | 0644 |
|
| compose.tar.gz | File | 5.04 KB | 0644 |
|
| config-5.15.0-126-generic.15.0-126-generic.tar.gz | File | 62.45 KB | 0644 |
|
| config-5.15.0-126-generic.tar | File | 257.5 KB | 0644 |
|
| consoles.tar | File | 2 KB | 0644 |
|
| consoles.tar.gz | File | 132 B | 0644 |
|
| containerd-shim-runc-v2.tar | File | 9.06 MB | 0644 |
|
| containerd-shim-runc-v2.tar.gz | File | 3.23 MB | 0644 |
|
| containerd-shim.tar | File | 7.01 MB | 0644 |
|
| containerd-shim.tar.gz | File | 2.54 MB | 0644 |
|
| copyright.tar | File | 7.5 KB | 0644 |
|
| copyright.tar.gz | File | 1.31 KB | 0644 |
|
| coredump_filter.tar | File | 3 KB | 0644 |
|
| coredump_filter.tar.gz | File | 88 B | 0644 |
|
| corelist.tar | File | 17 KB | 0644 |
|
| corelist.tar.gz | File | 4.67 KB | 0644 |
|
| corepack.tar | File | 2 KB | 0644 |
|
| corepack.tar.gz | File | 228 B | 0644 |
|
| cpio.tar | File | 143.5 KB | 0644 |
|
| cpio.tar.gz | File | 65.01 KB | 0644 |
|
| cpu_resctrl_groups.tar | File | 8 KB | 0644 |
|
| cpu_resctrl_groups.tar.gz | File | 112 B | 0644 |
|
| cpuset.tar | File | 4 KB | 0644 |
|
| cpuset.tar.gz | File | 89 B | 0644 |
|
| createuser.tar | File | 11 KB | 0644 |
|
| createuser.tar.gz | File | 3.65 KB | 0644 |
|
| cron.hourly.tar | File | 2 KB | 0644 |
|
| cron.hourly.tar.gz | File | 172 B | 0644 |
|
| cron.hourly.zip | File | 260 B | 0644 |
|
| cron.monthly.tar | File | 2 KB | 0644 |
|
| cron.monthly.tar.gz | File | 172 B | 0644 |
|
| cron.tar | File | 73.5 KB | 0644 |
|
| cron.tar.gz | File | 24.51 KB | 0644 |
|
| crond.pid.pid.tar.gz | File | 90 B | 0644 |
|
| crond.pid.tar | File | 2 KB | 0644 |
|
| cryptdisks_start.tar | File | 3.5 KB | 0644 |
|
| cryptdisks_start.tar.gz | File | 874 B | 0644 |
|
| cryptdisks_stop.tar | File | 2.5 KB | 0644 |
|
| cryptdisks_stop.tar.gz | File | 600 B | 0644 |
|
| cryptsetup-ssh.tar | File | 25.5 KB | 0644 |
|
| cryptsetup-ssh.tar.gz | File | 8.69 KB | 0644 |
|
| crypttab.tar | File | 2 KB | 0644 |
|
| crypttab.tar.gz | File | 136 B | 0644 |
|
| ctail.tar | File | 2.5 KB | 0644 |
|
| ctail.tar.gz | File | 635 B | 0644 |
|
| dbilogstrip.tar | File | 3 KB | 0644 |
|
| dbilogstrip.tar.gz | File | 801 B | 0644 |
|
| dbiproxy.tar | File | 7 KB | 0644 |
|
| dbiproxy.tar.gz | File | 2.39 KB | 0644 |
|
| dbus-cleanup-sockets.tar | File | 16 KB | 0644 |
|
| dbus-cleanup-sockets.tar.gz | File | 4.35 KB | 0644 |
|
| dbus-uuidgen.tar | File | 16 KB | 0644 |
|
| dbus-uuidgen.tar.gz | File | 3.13 KB | 0644 |
|
| deallocvt.tar | File | 16 KB | 0644 |
|
| deallocvt.tar.gz | File | 4.11 KB | 0644 |
|
| debconf.tar | File | 4.5 KB | 0644 |
|
| debconf.tar.gz | File | 1.4 KB | 0644 |
|
| debian_version.tar | File | 2 KB | 0644 |
|
| debian_version.tar.gz | File | 107 B | 0644 |
|
| debugfs.tar | File | 231.5 KB | 0644 |
|
| debugfs.tar.gz | File | 92.39 KB | 0644 |
|
| delgroup.tar | File | 18 KB | 0644 |
|
| delgroup.tar.gz | File | 5.37 KB | 0644 |
|
| depmod.tar | File | 168 KB | 0644 |
|
| depmod.tar.gz | File | 76.66 KB | 0644 |
|
| dev.tar | File | 15 KB | 0644 |
|
| dev.tar.gz | File | 635 B | 0644 |
|
| dev.zip | File | 2.48 KB | 0644 |
|
| devlink.tar | File | 144.5 KB | 0644 |
|
| devlink.tar.gz | File | 58.29 KB | 0644 |
|
| dhclient-script.tar | File | 17.5 KB | 0644 |
|
| dhclient-script.tar.gz | File | 4.24 KB | 0644 |
|
| dhclient.tar | File | 444.5 KB | 0644 |
|
| dhclient.tar.gz | File | 196.42 KB | 0644 |
|
| diff3.tar | File | 56.5 KB | 0644 |
|
| diff3.tar.gz | File | 24.54 KB | 0644 |
|
| dircolors.tar | File | 40.5 KB | 0644 |
|
| dircolors.tar.gz | File | 16.47 KB | 0644 |
|
| dmidecode.tar | File | 124.5 KB | 0644 |
|
| dmidecode.tar.gz | File | 43.96 KB | 0644 |
|
| dmsetup.tar | File | 173 KB | 0644 |
|
| dmsetup.tar.gz | File | 54.7 KB | 0644 |
|
| dmstats.tar | File | 173 KB | 0644 |
|
| dmstats.tar.gz | File | 54.7 KB | 0644 |
|
| dockerd-rootless.sh.sh.tar.gz | File | 2.06 KB | 0644 |
|
| dockerd-rootless.sh.tar | File | 7 KB | 0644 |
|
| dockerd.tar | File | 95.24 MB | 0644 |
|
| dockerd.tar.gz | File | 29.05 MB | 0644 |
|
| domainname.tar | File | 24 KB | 0644 |
|
| domainname.tar.gz | File | 5.76 KB | 0644 |
|
| dosfslabel.tar | File | 40 KB | 0644 |
|
| dosfslabel.tar.gz | File | 14.82 KB | 0644 |
|
| dot.profile.md5sums.profile.md5sums.tar.gz | File | 166 B | 0644 |
|
| dot.profile.md5sums.tar | File | 2 KB | 0644 |
|
| dpkg-deb.tar | File | 136 KB | 0644 |
|
| dpkg-deb.tar.gz | File | 57.29 KB | 0644 |
|
| dpkg-preconfigure.tar | File | 5.5 KB | 0644 |
|
| dpkg-preconfigure.tar.gz | File | 1.45 KB | 0644 |
|
| dpkg-reconfigure.tar | File | 6 KB | 0644 |
|
| dpkg-reconfigure.tar.gz | File | 1.84 KB | 0644 |
|
| dpkg.tar | File | 5 KB | 0644 |
|
| dpkg.tar.gz | File | 699 B | 0644 |
|
| dpkg.zip | File | 12.89 KB | 0644 |
|
| driver.tar | File | 2 KB | 0644 |
|
| driver.tar.gz | File | 265 B | 0644 |
|
| drivers_autoprobe.tar | File | 2 KB | 0644 |
|
| drivers_autoprobe.tar.gz | File | 113 B | 0644 |
|
| dropdb.tar | File | 11 KB | 0644 |
|
| dropdb.tar.gz | File | 3.65 KB | 0644 |
|
| droplang.tar | File | 11 KB | 0644 |
|
| droplang.tar.gz | File | 3.65 KB | 0644 |
|
| dropuser.tar | File | 11 KB | 0644 |
|
| dropuser.tar.gz | File | 3.65 KB | 0644 |
|
| dumpe2fs.tar | File | 32 KB | 0644 |
|
| dumpe2fs.tar.gz | File | 10.81 KB | 0644 |
|
| dumpkeys.tar | File | 160.5 KB | 0644 |
|
| dumpkeys.tar.gz | File | 38.66 KB | 0644 |
|
| e2freefrag.tar | File | 16 KB | 0644 |
|
| e2freefrag.tar.gz | File | 5.05 KB | 0644 |
|
| e2image.tar | File | 44 KB | 0644 |
|
| e2image.tar.gz | File | 14.84 KB | 0644 |
|
| e2label.tar | File | 104.5 KB | 0644 |
|
| e2label.tar.gz | File | 44.96 KB | 0644 |
|
| e2scrub.conf.conf.tar.gz | File | 430 B | 0644 |
|
| e2scrub.conf.tar | File | 2.5 KB | 0644 |
|
| e2scrub.tar | File | 9 KB | 0644 |
|
| e2scrub.tar.gz | File | 3.16 KB | 0644 |
|
| e4defrag.tar | File | 32 KB | 0644 |
|
| e4defrag.tar.gz | File | 12.03 KB | 0644 |
|
| ebtables-nft-restore.tar | File | 221 KB | 0644 |
|
| ebtables-nft-restore.tar.gz | File | 91.05 KB | 0644 |
|
| ebtables-restore.tar | File | 221 KB | 0644 |
|
| ebtables-restore.tar.gz | File | 91.05 KB | 0644 |
|
| ebtables-save.tar | File | 221 KB | 0644 |
|
| ebtables-save.tar.gz | File | 91.04 KB | 0644 |
|
| ebtables.tar | File | 221 KB | 0644 |
|
| ebtables.tar.gz | File | 91.04 KB | 0644 |
|
| editor.tar | File | 278.5 KB | 0644 |
|
| editor.tar.gz | File | 135.37 KB | 0644 |
|
| eject.tar | File | 44 KB | 0644 |
|
| eject.tar.gz | File | 14.98 KB | 0644 |
|
| encguess.tar | File | 5 KB | 0644 |
|
| encguess.tar.gz | File | 1.52 KB | 0644 |
|
| eqn.tar | File | 190 KB | 0644 |
|
| eqn.tar.gz | File | 70.52 KB | 0644 |
|
| era_check.tar | File | 1.33 MB | 0644 |
|
| era_check.tar.gz | File | 510.81 KB | 0644 |
|
| era_dump.tar | File | 1.33 MB | 0644 |
|
| era_dump.tar.gz | File | 510.81 KB | 0644 |
|
| era_restore.tar | File | 1.33 MB | 0644 |
|
| era_restore.tar.gz | File | 510.81 KB | 0644 |
|
| ethtool.tar | File | 21.5 KB | 0644 |
|
| ethtool.tar.gz | File | 13 KB | 0644 |
|
| events.zip | File | 280 B | 0644 |
|
| execdomains.tar | File | 2 KB | 0644 |
|
| execdomains.tar.gz | File | 112 B | 0644 |
|
| expand.tar | File | 36.5 KB | 0644 |
|
| expand.tar.gz | File | 12.92 KB | 0644 |
|
| fallocate.tar | File | 24 KB | 0644 |
|
| fallocate.tar.gz | File | 7.52 KB | 0644 |
|
| fc-cache.tar | File | 24 KB | 0644 |
|
| fc-cache.tar.gz | File | 5.48 KB | 0644 |
|
| fc-list.tar | File | 16 KB | 0644 |
|
| fc-list.tar.gz | File | 3.69 KB | 0644 |
|
| fc-match.tar | File | 16 KB | 0644 |
|
| fc-match.tar.gz | File | 4.1 KB | 0644 |
|
| fc-pattern.tar | File | 16 KB | 0644 |
|
| fc-pattern.tar.gz | File | 3.38 KB | 0644 |
|
| fc-validate.tar | File | 16 KB | 0644 |
|
| fc-validate.tar.gz | File | 3.98 KB | 0644 |
|
| fgconsole.tar | File | 16 KB | 0644 |
|
| fgconsole.tar.gz | File | 4.12 KB | 0644 |
|
| filesystems.tar | File | 2 KB | 0644 |
|
| filesystems.tar.gz | File | 262 B | 0644 |
|
| findfs.tar | File | 16 KB | 0644 |
|
| findfs.tar.gz | File | 3.4 KB | 0644 |
|
| fixparts.tar | File | 60 KB | 0644 |
|
| fixparts.tar.gz | File | 24.76 KB | 0644 |
|
| fonts.zip | File | 102.38 KB | 0644 |
|
| free.tar | File | 28 KB | 0644 |
|
| free.tar.gz | File | 6.65 KB | 0644 |
|
| fsadm.tar | File | 25.5 KB | 0644 |
|
| fsadm.tar.gz | File | 8.15 KB | 0644 |
|
| fsck.btrfs.btrfs.tar.gz | File | 729 B | 0644 |
|
| fsck.btrfs.tar | File | 3 KB | 0644 |
|
| fsck.ext2.ext2.tar.gz | File | 155.83 KB | 0644 |
|
| fsck.ext2.tar | File | 353.5 KB | 0644 |
|
| fsck.tar | File | 44 KB | 0644 |
|
| fsck.tar.gz | File | 15.34 KB | 0644 |
|
| fsck.vfat.tar | File | 84 KB | 0644 |
|
| fsck.vfat.vfat.tar.gz | File | 35.83 KB | 0644 |
|
| fsck.xfs.tar | File | 3.5 KB | 0644 |
|
| fsck.xfs.xfs.tar.gz | File | 1.07 KB | 0644 |
|
| fstab.tar | File | 2 KB | 0644 |
|
| fstab.tar.gz | File | 384 B | 0644 |
|
| fstrim.tar | File | 44 KB | 0644 |
|
| fstrim.tar.gz | File | 14.26 KB | 0644 |
|
| fuse.conf.conf.tar.gz | File | 450 B | 0644 |
|
| fuse.conf.tar | File | 2.5 KB | 0644 |
|
| fuser.tar | File | 41 KB | 0644 |
|
| fuser.tar.gz | File | 15.08 KB | 0644 |
|
| fusermount.tar | File | 36 KB | 0644 |
|
| fusermount.tar.gz | File | 12.93 KB | 0644 |
|
| fwupdagent.tar | File | 192 KB | 0644 |
|
| fwupdagent.tar.gz | File | 73.29 KB | 0644 |
|
| fwupdate.tar | File | 84 KB | 0644 |
|
| fwupdate.tar.gz | File | 31.26 KB | 0644 |
|
| galera_new_cluster.tar | File | 2.5 KB | 0644 |
|
| galera_new_cluster.tar.gz | File | 616 B | 0644 |
|
| galera_recovery.tar | File | 5 KB | 0644 |
|
| galera_recovery.tar.gz | File | 1.6 KB | 0644 |
|
| gawkapi.h.h.tar.gz | File | 11.75 KB | 0644 |
|
| gawkapi.h.tar | File | 41.5 KB | 0644 |
|
| gcc-12-base.zip | File | 74.55 KB | 0644 |
|
| gcc.tar | File | 120 KB | 0644 |
|
| gcc.tar.gz | File | 21.56 KB | 0644 |
|
| gdisk.tar | File | 176 KB | 0644 |
|
| gdisk.tar.gz | File | 81.06 KB | 0644 |
|
| gdk-pixbuf-thumbnailer.tar | File | 20 KB | 0644 |
|
| gdk-pixbuf-thumbnailer.tar.gz | File | 4.08 KB | 0644 |
|
| genl.tar | File | 92 KB | 0644 |
|
| genl.tar.gz | File | 39.87 KB | 0644 |
|
| geqn.tar | File | 190 KB | 0644 |
|
| geqn.tar.gz | File | 70.53 KB | 0644 |
|
| getcap.tar | File | 16 KB | 0644 |
|
| getcap.tar.gz | File | 3.09 KB | 0644 |
|
| getpcaps.tar | File | 16 KB | 0644 |
|
| getpcaps.tar.gz | File | 2.97 KB | 0644 |
|
| getty.tar | File | 57.5 KB | 0644 |
|
| getty.tar.gz | File | 21.53 KB | 0644 |
|
| gid_map.tar | File | 10 KB | 0644 |
|
| gid_map.tar.gz | File | 106 B | 0644 |
|
| git-upload-pack.tar | File | 3.54 MB | 0644 |
|
| git-upload-pack.tar.gz | File | 1.77 MB | 0644 |
|
| glib-2.0.tar | File | 186 KB | 0644 |
|
| glib-2.0.tar.gz | File | 37.48 KB | 0644 |
|
| gpasswd.tar | File | 72 KB | 0644 |
|
| gpasswd.tar.gz | File | 26.5 KB | 0644 |
|
| gpg-wks-server.tar | File | 117 KB | 0644 |
|
| gpg-wks-server.tar.gz | File | 52.79 KB | 0644 |
|
| gpgcompose.tar | File | 498 KB | 0644 |
|
| gpgcompose.tar.gz | File | 247.96 KB | 0644 |
|
| gpgv.tar | File | 16 KB | 0644 |
|
| gpgv.tar.gz | File | 6.64 KB | 0644 |
|
| grep.tar | File | 180 KB | 0644 |
|
| grep.tar.gz | File | 84.07 KB | 0644 |
|
| gresource.tar | File | 24 KB | 0644 |
|
| gresource.tar.gz | File | 6.68 KB | 0644 |
|
| grotty.tar | File | 120.5 KB | 0644 |
|
| grotty.tar.gz | File | 50.28 KB | 0644 |
|
| group.tar | File | 2.5 KB | 0644 |
|
| group.tar.gz | File | 571 B | 0644 |
|
| groupmems.tar | File | 56 KB | 0644 |
|
| groupmems.tar.gz | File | 20.05 KB | 0644 |
|
| growpart.tar | File | 28 KB | 0644 |
|
| growpart.tar.gz | File | 9.4 KB | 0644 |
|
| grpunconv.tar | File | 52 KB | 0644 |
|
| grpunconv.tar.gz | File | 17.61 KB | 0644 |
|
| grub-gfxpayload-lists.zip | File | 1.32 KB | 0644 |
|
| grub-install.tar | File | 1.15 MB | 0644 |
|
| grub-install.tar.gz | File | 553.31 KB | 0644 |
|
| grub-mkconfig.tar | File | 10.5 KB | 0644 |
|
| grub-mkconfig.tar.gz | File | 3.43 KB | 0644 |
|
| grub-mkfont.tar | File | 274 KB | 0644 |
|
| grub-mkfont.tar.gz | File | 96.93 KB | 0644 |
|
| grub-mklayout.tar | File | 254 KB | 0644 |
|
| grub-mklayout.tar.gz | File | 85.97 KB | 0644 |
|
| grub-mknetdir.tar | File | 419.5 KB | 0644 |
|
| grub-mknetdir.tar.gz | File | 170.87 KB | 0644 |
|
| grub-probe.tar | File | 943 KB | 0644 |
|
| grub-probe.tar.gz | File | 435.65 KB | 0644 |
|
| grub-reboot.tar | File | 6.5 KB | 0644 |
|
| grub-reboot.tar.gz | File | 2.09 KB | 0644 |
|
| grub-script-check.tar | File | 277.5 KB | 0644 |
|
| grub-script-check.tar.gz | File | 96.32 KB | 0644 |
|
| grub.zip | File | 6.49 MB | 0644 |
|
| gtk-update-icon-cache.tar | File | 40.5 KB | 0644 |
|
| gtk-update-icon-cache.tar.gz | File | 12.84 KB | 0644 |
|
| gunzip.tar | File | 4 KB | 0644 |
|
| gunzip.tar.gz | File | 1.2 KB | 0644 |
|
| h1igfj.tar | File | 2 KB | 0644 |
|
| h1igfj.tar.gz | File | 184 B | 0644 |
|
| h2xs.tar | File | 61.5 KB | 0644 |
|
| h2xs.tar.gz | File | 20.49 KB | 0644 |
|
| h9ozm4.tar | File | 2 KB | 0644 |
|
| h9ozm4.tar.gz | File | 185 B | 0644 |
|
| hdparm.conf.conf.tar.gz | File | 2.05 KB | 0644 |
|
| hdparm.conf.tar | File | 6 KB | 0644 |
|
| hdparm.tar | File | 141 KB | 0644 |
|
| hdparm.tar.gz | File | 60.25 KB | 0644 |
|
| helpztags.tar | File | 4 KB | 0644 |
|
| helpztags.tar.gz | File | 1.36 KB | 0644 |
|
| host.conf.conf.tar.gz | File | 167 B | 0644 |
|
| host.conf.tar | File | 2 KB | 0644 |
|
| hostid.tar | File | 32.5 KB | 0644 |
|
| hostid.tar.gz | File | 10.17 KB | 0644 |
|
| hostname.tar | File | 24 KB | 0644 |
|
| hostname.tar.gz | File | 5.76 KB | 0644 |
|
| hostnamectl.tar | File | 32 KB | 0644 |
|
| hostnamectl.tar.gz | File | 9.94 KB | 0644 |
|
| hosts.allow.allow.tar.gz | File | 328 B | 0644 |
|
| hosts.allow.tar | File | 2 KB | 0644 |
|
| htdbm.tar | File | 28 KB | 0644 |
|
| htdbm.tar.gz | File | 7.61 KB | 0644 |
|
| hwclock.tar | File | 52 KB | 0644 |
|
| hwclock.tar.gz | File | 18.46 KB | 0644 |
|
| include.zip | File | 58.57 MB | 0644 |
|
| index.cgi.cgi.tar.gz | File | 68.17 KB | 0644 |
|
| index.cgi.tar | File | 250.5 KB | 0644 |
|
| init.tar | File | 1.77 MB | 0644 |
|
| init.tar.gz | File | 621.25 KB | 0644 |
|
| initrd.img.img.tar.gz | File | 60.34 MB | 0644 |
|
| initrd.img.old.img.old.tar.gz | File | 60.34 MB | 0644 |
|
| initrd.img.old.tar | File | 60.83 MB | 0644 |
|
| initrd.img.tar | File | 60.83 MB | 0644 |
|
| input.zip | File | 1.82 KB | 0644 |
|
| install-info.tar | File | 105 KB | 0644 |
|
| install-info.tar.gz | File | 49.92 KB | 0644 |
|
| instmodsh.tar | File | 6 KB | 0644 |
|
| instmodsh.tar.gz | File | 1.45 KB | 0644 |
|
| iomem.tar | File | 3 KB | 0644 |
|
| iomem.tar.gz | File | 288 B | 0644 |
|
| ip.tar | File | 704 KB | 0644 |
|
| ip.tar.gz | File | 307.22 KB | 0644 |
|
| ip6_mr_vif.tar | File | 2 KB | 0644 |
|
| ip6_mr_vif.tar.gz | File | 138 B | 0644 |
|
| ip6tables-legacy-restore.tar | File | 98.5 KB | 0644 |
|
| ip6tables-legacy-restore.tar.gz | File | 36.25 KB | 0644 |
|
| ip6tables-nft-restore.tar | File | 221 KB | 0644 |
|
| ip6tables-nft-restore.tar.gz | File | 91.05 KB | 0644 |
|
| ip6tables-nft.tar | File | 221 KB | 0644 |
|
| ip6tables-nft.tar.gz | File | 91.04 KB | 0644 |
|
| ip6tables-restore-translate.tar | File | 221 KB | 0644 |
|
| ip6tables-restore-translate.tar.gz | File | 91.06 KB | 0644 |
|
| ip6tables-save.tar | File | 221 KB | 0644 |
|
| ip6tables-save.tar.gz | File | 91.04 KB | 0644 |
|
| ip6tables.tar | File | 221 KB | 0644 |
|
| ip6tables.tar.gz | File | 91.04 KB | 0644 |
|
| iptables-apply.tar | File | 8.5 KB | 0644 |
|
| iptables-apply.tar.gz | File | 2.71 KB | 0644 |
|
| iptables-legacy-restore.tar | File | 98.5 KB | 0644 |
|
| iptables-legacy-restore.tar.gz | File | 36.26 KB | 0644 |
|
| iptables-legacy.tar | File | 98.5 KB | 0644 |
|
| iptables-legacy.tar.gz | File | 36.25 KB | 0644 |
|
| iptables-nft-restore.tar | File | 221 KB | 0644 |
|
| iptables-nft-restore.tar.gz | File | 91.05 KB | 0644 |
|
| iptables-nft.tar | File | 221 KB | 0644 |
|
| iptables-nft.tar.gz | File | 91.04 KB | 0644 |
|
| iptables-restore.tar | File | 221 KB | 0644 |
|
| iptables-restore.tar.gz | File | 91.05 KB | 0644 |
|
| iptables.tar | File | 221 KB | 0644 |
|
| iptables.tar.gz | File | 91.04 KB | 0644 |
|
| irqbalance.tar | File | 68.5 KB | 0644 |
|
| irqbalance.tar.gz | File | 27.87 KB | 0644 |
|
| iscsiadm.tar | File | 400 KB | 0644 |
|
| iscsiadm.tar.gz | File | 153.88 KB | 0644 |
|
| iscsid.tar | File | 300.5 KB | 0644 |
|
| iscsid.tar.gz | File | 112.93 KB | 0644 |
|
| issue.net.net.tar.gz | File | 107 B | 0644 |
|
| issue.net.tar | File | 2 KB | 0644 |
|
| java-17-openjdk.tar | File | 437.5 KB | 0644 |
|
| java-17-openjdk.tar.gz | File | 129.06 KB | 0644 |
|
| jsondiff.tar | File | 2.5 KB | 0644 |
|
| jsondiff.tar.gz | File | 545 B | 0644 |
|
| jsonpatch.tar | File | 5.5 KB | 0644 |
|
| jsonpatch.tar.gz | File | 1.44 KB | 0644 |
|
| jsonschema.tar | File | 2 KB | 0644 |
|
| jsonschema.tar.gz | File | 324 B | 0644 |
|
| kallsyms.tar | File | 7.1 MB | 0644 |
|
| kallsyms.tar.gz | File | 987.4 KB | 0644 |
|
| kbdrate.tar | File | 20 KB | 0644 |
|
| kbdrate.tar.gz | File | 5.05 KB | 0644 |
|
| keep-one-running.tar | File | 5.5 KB | 0644 |
|
| keep-one-running.tar.gz | File | 1.68 KB | 0644 |
|
| kernel-install.tar | File | 6.5 KB | 0644 |
|
| kernel-install.tar.gz | File | 1.74 KB | 0644 |
|
| kernel.tar | File | 12 KB | 0644 |
|
| kernel.tar.gz | File | 2.33 KB | 0644 |
|
| kernel.zip | File | 8.68 KB | 0644 |
|
| keyring.tar | File | 2.5 KB | 0644 |
|
| keyring.tar.gz | File | 553 B | 0644 |
|
| keys.tar | File | 2 KB | 0644 |
|
| keys.tar.gz | File | 177 B | 0644 |
|
| kgm5j7.zip | File | 74.77 KB | 0644 |
|
| ldconfig.real.real.tar.gz | File | 498.98 KB | 0644 |
|
| ldconfig.real.tar | File | 1.16 MB | 0644 |
|
| lessecho.tar | File | 16 KB | 0644 |
|
| lessecho.tar.gz | File | 3.31 KB | 0644 |
|
| letsencrypt.tar | File | 2.5 KB | 0644 |
|
| letsencrypt.tar.gz | File | 558 B | 0644 |
|
| libapr1.tar | File | 11.5 KB | 0644 |
|
| libapr1.tar.gz | File | 4.53 KB | 0644 |
|
| libargon2-1.zip | File | 9.14 KB | 0644 |
|
| libatasmart4.tar | File | 8 KB | 0644 |
|
| libatasmart4.tar.gz | File | 3.49 KB | 0644 |
|
| libatk1.0-data.zip | File | 2.36 KB | 0644 |
|
| libatm1.tar | File | 6.5 KB | 0644 |
|
| libatm1.tar.gz | File | 3.1 KB | 0644 |
|
| libc-bin.zip | File | 654 B | 0644 |
|
| libefivar1.zip | File | 3.87 KB | 0644 |
|
| libencode-locale-perl.tar | File | 5 KB | 0644 |
|
| libencode-locale-perl.tar.gz | File | 1.85 KB | 0644 |
|
| libexec.tar | File | 123.87 MB | 0644 |
|
| libexec.tar.gz | File | 47 MB | 0644 |
|
| libexec.zip | File | 123.84 MB | 0644 |
|
| libexpat1.tar | File | 7 KB | 0644 |
|
| libexpat1.tar.gz | File | 3.01 KB | 0644 |
|
| libgav1-0.tar | File | 6 KB | 0644 |
|
| libgav1-0.tar.gz | File | 2.39 KB | 0644 |
|
| libgav1-0.zip | File | 3.68 KB | 0644 |
|
| libgcab-1.0-0.tar | File | 6 KB | 0644 |
|
| libgcab-1.0-0.tar.gz | File | 2.23 KB | 0644 |
|
| libgdbm6.tar | File | 6.5 KB | 0644 |
|
| libgdbm6.tar.gz | File | 2.61 KB | 0644 |
|
| libgdbm6.zip | File | 4.36 KB | 0644 |
|
| libgmp10.tar | File | 6.5 KB | 0644 |
|
| libgmp10.tar.gz | File | 2.39 KB | 0644 |
|
| libgnutls30.zip | File | 167.36 KB | 0644 |
|
| libgraphite2-3.tar | File | 13.5 KB | 0644 |
|
| libgraphite2-3.tar.gz | File | 5.18 KB | 0644 |
|
| libidn2-0.tar | File | 18.5 KB | 0644 |
|
| libidn2-0.tar.gz | File | 10.51 KB | 0644 |
|
| libjson-perl.tar | File | 11 KB | 0644 |
|
| libjson-perl.tar.gz | File | 3.68 KB | 0644 |
|
| libjson-xs-perl.zip | File | 6.36 KB | 0644 |
|
| libkmod2.tar | File | 11.5 KB | 0644 |
|
| libkmod2.tar.gz | File | 3.99 KB | 0644 |
|
| libldap-2.5-0.zip | File | 22.97 KB | 0644 |
|
| liblmdb0.zip | File | 3.7 KB | 0644 |
|
| liblz4-1.zip | File | 4.81 KB | 0644 |
|
| liblzf1.tar | File | 7.5 KB | 0644 |
|
| liblzf1.tar.gz | File | 2.29 KB | 0644 |
|
| liblzf1.zip | File | 5.27 KB | 0644 |
|
| liblzo2-2.tar | File | 13 KB | 0644 |
|
| liblzo2-2.tar.gz | File | 7.77 KB | 0644 |
|
| liblzo2-2.zip | File | 8.84 KB | 0644 |
|
| libman.so.so.tar.gz | File | 82.25 KB | 0644 |
|
| libman.so.tar | File | 190 KB | 0644 |
|
| libmpfr6.zip | File | 32.2 KB | 0644 |
|
| libncursesw6.tar | File | 12.5 KB | 0644 |
|
| libncursesw6.tar.gz | File | 5.58 KB | 0644 |
|
| libnginx-mod-http-geoip2.tar | File | 13.5 KB | 0644 |
|
| libnginx-mod-http-geoip2.tar.gz | File | 4.42 KB | 0644 |
|
| libnginx-mod-mail.zip | File | 11.08 KB | 0644 |
|
| libnl-3-200.tar | File | 10 KB | 0644 |
|
| libnl-3-200.tar.gz | File | 3.72 KB | 0644 |
|
| libnl-3-200.zip | File | 7.25 KB | 0644 |
|
| libnpth0.tar | File | 4.5 KB | 0644 |
|
| libnpth0.tar.gz | File | 1.86 KB | 0644 |
|
| libnpth0.zip | File | 2.41 KB | 0644 |
|
| libnsl2.tar | File | 16 KB | 0644 |
|
| libnsl2.tar.gz | File | 4.13 KB | 0644 |
|
| libpciaccess0.zip | File | 6.58 KB | 0644 |
|
| libpcre3.tar | File | 43 KB | 0644 |
|
| libpcre3.tar.gz | File | 36.67 KB | 0644 |
|
| libpolkit-gobject-1-0.tar | File | 8 KB | 0644 |
|
| libpolkit-gobject-1-0.tar.gz | File | 5.14 KB | 0644 |
|
| libseccomp2.tar | File | 4.5 KB | 0644 |
|
| libseccomp2.tar.gz | File | 1.94 KB | 0644 |
|
| libslirp0.tar | File | 8.5 KB | 0644 |
|
| libslirp0.tar.gz | File | 3.28 KB | 0644 |
|
| libslirp0.zip | File | 5.99 KB | 0644 |
|
| libsystemd0.zip | File | 14.06 KB | 0644 |
|
| libtiff5.zip | File | 4.14 KB | 0644 |
|
| libtirpc3.tar | File | 17.5 KB | 0644 |
|
| libtirpc3.tar.gz | File | 5.13 KB | 0644 |
|
| libxaw7.zip | File | 10.36 KB | 0644 |
|
| libxmuu1.zip | File | 5.51 KB | 0644 |
|
| libxxf86vm1.tar | File | 5 KB | 0644 |
|
| libxxf86vm1.tar.gz | File | 2.29 KB | 0644 |
|
| limits.tar | File | 27 KB | 0644 |
|
| limits.tar.gz | File | 371 B | 0644 |
|
| linux-boot-prober.tar | File | 3.5 KB | 0644 |
|
| linux-boot-prober.tar.gz | File | 703 B | 0644 |
|
| linux-check-removal.tar | File | 5.5 KB | 0644 |
|
| linux-check-removal.tar.gz | File | 1.86 KB | 0644 |
|
| linux-version.tar | File | 4.5 KB | 0644 |
|
| linux-version.tar.gz | File | 1.31 KB | 0644 |
|
| listres.tar | File | 16.5 KB | 0644 |
|
| listres.tar.gz | File | 4.32 KB | 0644 |
|
| ln.tar | File | 60.5 KB | 0644 |
|
| ln.tar.gz | File | 25.13 KB | 0644 |
|
| lnstat.tar | File | 24.5 KB | 0644 |
|
| lnstat.tar.gz | File | 7.57 KB | 0644 |
|
| loadkeys.tar | File | 200.5 KB | 0644 |
|
| loadkeys.tar.gz | File | 59.27 KB | 0644 |
|
| local.tar | File | 119.47 MB | 0644 |
|
| local.tar.gz | File | 45.47 MB | 0644 |
|
| local.zip | File | 119.47 MB | 0644 |
|
| locale-archive.tar | File | 2.91 MB | 0644 |
|
| locale-archive.tar.gz | File | 674.91 KB | 0644 |
|
| locale.zip | File | 3.25 MB | 0644 |
|
| localectl.tar | File | 28 KB | 0644 |
|
| localectl.tar.gz | File | 8.93 KB | 0644 |
|
| localedef.tar | File | 328.5 KB | 0644 |
|
| localedef.tar.gz | File | 139.83 KB | 0644 |
|
| logresolve.tar | File | 16 KB | 0644 |
|
| logresolve.tar.gz | File | 3.94 KB | 0644 |
|
| logrotate.tar | File | 104 KB | 0644 |
|
| logrotate.tar.gz | File | 40.51 KB | 0644 |
|
| lowntfs-3g.tar | File | 116.5 KB | 0644 |
|
| lowntfs-3g.tar.gz | File | 48.82 KB | 0644 |
|
| lsattr.tar | File | 16 KB | 0644 |
|
| lsattr.tar.gz | File | 3.97 KB | 0644 |
|
| lsb.zip | File | 19.77 KB | 0644 |
|
| lsb_release.tar | File | 5.5 KB | 0644 |
|
| lsb_release.tar.gz | File | 1.2 KB | 0644 |
|
| lvchange.tar | File | 2.89 MB | 0644 |
|
| lvchange.tar.gz | File | 932.15 KB | 0644 |
|
| lvconvert.tar | File | 2.89 MB | 0644 |
|
| lvconvert.tar.gz | File | 932.16 KB | 0644 |
|
| lvextend.tar | File | 2.89 MB | 0644 |
|
| lvextend.tar.gz | File | 932.15 KB | 0644 |
|
| lvm.tar | File | 120 KB | 0644 |
|
| lvm.tar.gz | File | 28 KB | 0644 |
|
| lvmconfig.tar | File | 2.89 MB | 0644 |
|
| lvmconfig.tar.gz | File | 932.16 KB | 0644 |
|
| lvmdump.tar | File | 12 KB | 0644 |
|
| lvmdump.tar.gz | File | 3.64 KB | 0644 |
|
| lvmsadc.tar | File | 2.89 MB | 0644 |
|
| lvmsadc.tar.gz | File | 932.15 KB | 0644 |
|
| lvreduce.tar | File | 2.89 MB | 0644 |
|
| lvreduce.tar.gz | File | 932.15 KB | 0644 |
|
| lvrename.tar | File | 2.89 MB | 0644 |
|
| lvrename.tar.gz | File | 932.15 KB | 0644 |
|
| lvresize.tar | File | 2.89 MB | 0644 |
|
| lvresize.tar.gz | File | 932.15 KB | 0644 |
|
| lzcat.tar | File | 84.5 KB | 0644 |
|
| lzcat.tar.gz | File | 33.92 KB | 0644 |
|
| machine-id.tar | File | 2 KB | 0644 |
|
| machine-id.tar.gz | File | 120 B | 0644 |
|
| magic.mime.mime.tar.gz | File | 177 B | 0644 |
|
| magic.mime.tar | File | 2 KB | 0644 |
|
| make-ssl-cert.tar | File | 8.5 KB | 0644 |
|
| make-ssl-cert.tar.gz | File | 2.42 KB | 0644 |
|
| man.tar | File | 119.5 KB | 0644 |
|
| man.tar.gz | File | 51.43 KB | 0644 |
|
| mandb.tar | File | 282 KB | 0644 |
|
| mandb.tar.gz | File | 58.62 KB | 0644 |
|
| manifest.tar | File | 3.5 KB | 0644 |
|
| manifest.tar.gz | File | 1012 B | 0644 |
|
| maps.tar | File | 7.5 KB | 0644 |
|
| maps.tar.gz | File | 76 B | 0644 |
|
| mariadb-common.tar | File | 43 KB | 0644 |
|
| mariadb-common.tar.gz | File | 14.41 KB | 0644 |
|
| mariadb-hotcopy.tar | File | 36 KB | 0644 |
|
| mariadb-hotcopy.tar.gz | File | 11.7 KB | 0644 |
|
| mariadb-repair.tar | File | 3.86 MB | 0644 |
|
| mariadb-repair.tar.gz | File | 1007.13 KB | 0644 |
|
| mariadb-report.tar | File | 50 KB | 0644 |
|
| mariadb-report.tar.gz | File | 11.71 KB | 0644 |
|
| mariadb-setpermission.tar | File | 19.5 KB | 0644 |
|
| mariadb-setpermission.tar.gz | File | 5.31 KB | 0644 |
|
| mariadb-waitpid.tar | File | 3.54 MB | 0644 |
|
| mariadb-waitpid.tar.gz | File | 891 KB | 0644 |
|
| mariadb.tar | File | 4.09 MB | 0644 |
|
| mariadb.tar.gz | File | 1.07 MB | 0644 |
|
| mc.tar | File | 1.34 MB | 0644 |
|
| mc.tar.gz | File | 70.22 KB | 0644 |
|
| mc.zip | File | 253.13 KB | 0644 |
|
| mcookie.tar | File | 28 KB | 0644 |
|
| mcookie.tar.gz | File | 8.89 KB | 0644 |
|
| mcview.tar | File | 1.05 MB | 0644 |
|
| mcview.tar.gz | File | 505.34 KB | 0644 |
|
| md5sum.textutils.tar | File | 44 KB | 0644 |
|
| md5sum.textutils.textutils.tar.gz | File | 17.39 KB | 0644 |
|
| migrate-pubring-from-classic-gpg.tar | File | 4.5 KB | 0644 |
|
| migrate-pubring-from-classic-gpg.tar.gz | File | 1.4 KB | 0644 |
|
| mime.zip | File | 7.24 KB | 0644 |
|
| mke2fs.conf.conf.tar.gz | File | 420 B | 0644 |
|
| mke2fs.conf.tar | File | 2.5 KB | 0644 |
|
| mkfs.btrfs.btrfs.tar.gz | File | 262.4 KB | 0644 |
|
| mkfs.btrfs.tar | File | 473 KB | 0644 |
|
| mkfs.ext3.ext3.tar.gz | File | 56.91 KB | 0644 |
|
| mkfs.ext3.tar | File | 132.5 KB | 0644 |
|
| mkfs.ext4.ext4.tar.gz | File | 56.91 KB | 0644 |
|
| mkfs.ext4.tar | File | 132.5 KB | 0644 |
|
| mkfs.fat.fat.tar.gz | File | 21.77 KB | 0644 |
|
| mkfs.fat.tar | File | 52.5 KB | 0644 |
|
| mkfs.minix.minix.tar.gz | File | 17.04 KB | 0644 |
|
| mkfs.minix.tar | File | 44 KB | 0644 |
|
| mkfs.msdos.msdos.tar.gz | File | 21.77 KB | 0644 |
|
| mkfs.msdos.tar | File | 52.5 KB | 0644 |
|
| mkfs.ntfs.ntfs.tar.gz | File | 29.88 KB | 0644 |
|
| mkfs.ntfs.tar | File | 72 KB | 0644 |
|
| mkfs.tar | File | 16 KB | 0644 |
|
| mkfs.tar.gz | File | 4.26 KB | 0644 |
|
| mkfs.vfat.tar | File | 52.5 KB | 0644 |
|
| mkfs.vfat.vfat.tar.gz | File | 21.77 KB | 0644 |
|
| mkhomedir_helper.tar | File | 24 KB | 0644 |
|
| mkhomedir_helper.tar.gz | File | 4.16 KB | 0644 |
|
| mkinitramfs.tar | File | 14 KB | 0644 |
|
| mkinitramfs.tar.gz | File | 4.63 KB | 0644 |
|
| modprobe.tar | File | 168 KB | 0644 |
|
| modprobe.tar.gz | File | 76.67 KB | 0644 |
|
| modules.tar | File | 6.5 KB | 0644 |
|
| modules.tar.gz | File | 1.14 KB | 0644 |
|
| motd.dynamic.dynamic.tar.gz | File | 586 B | 0644 |
|
| motd.dynamic.tar | File | 2.5 KB | 0644 |
|
| mount.fuse.fuse.tar.gz | File | 5.3 KB | 0644 |
|
| mount.fuse.tar | File | 20 KB | 0644 |
|
| mount.fuse3.fuse3.tar.gz | File | 5.31 KB | 0644 |
|
| mount.fuse3.tar | File | 20 KB | 0644 |
|
| mount.ntfs.ntfs.tar.gz | File | 66.87 KB | 0644 |
|
| mount.ntfs.tar | File | 161 KB | 0644 |
|
| mountinfo.tar | File | 15 KB | 0644 |
|
| mountinfo.tar.gz | File | 993 B | 0644 |
|
| mounts.tar | File | 25 KB | 0644 |
|
| mounts.tar.gz | File | 706 B | 0644 |
|
| mpath_persist.h.h.tar.gz | File | 3.21 KB | 0644 |
|
| mpath_persist.h.tar | File | 13 KB | 0644 |
|
| mpathpersist.tar | File | 33 KB | 0644 |
|
| mpathpersist.tar.gz | File | 9.83 KB | 0644 |
|
| msql2mysql.tar | File | 3 KB | 0644 |
|
| msql2mysql.tar.gz | File | 818 B | 0644 |
|
| multipath.tar | File | 36 KB | 0644 |
|
| multipath.tar.gz | File | 11.79 KB | 0644 |
|
| multipath.zip | File | 327.11 KB | 0644 |
|
| myisampack.tar | File | 3.89 MB | 0644 |
|
| myisampack.tar.gz | File | 1.05 MB | 0644 |
|
| mysql_fix_extensions.tar | File | 3 KB | 0644 |
|
| mysql_fix_extensions.tar.gz | File | 841 B | 0644 |
|
| mysql_install_db.tar | File | 24 KB | 0644 |
|
| mysql_install_db.tar.gz | File | 7.16 KB | 0644 |
|
| mysql_setpermission.tar | File | 19.5 KB | 0644 |
|
| mysql_setpermission.tar.gz | File | 5.31 KB | 0644 |
|
| mysql_tzinfo_to_sql.tar | File | 3.55 MB | 0644 |
|
| mysql_tzinfo_to_sql.tar.gz | File | 896.57 KB | 0644 |
|
| mysqlbinlog.tar | File | 4.12 MB | 0644 |
|
| mysqlbinlog.tar.gz | File | 1.11 MB | 0644 |
|
| mysqlcheck.tar | File | 3.86 MB | 0644 |
|
| mysqlcheck.tar.gz | File | 1007.13 KB | 0644 |
|
| mysqld_safe.tar | File | 32 KB | 0644 |
|
| mysqld_safe.tar.gz | File | 10.3 KB | 0644 |
|
| mysqld_safe_helper.tar | File | 3.51 MB | 0644 |
|
| mysqld_safe_helper.tar.gz | File | 875.83 KB | 0644 |
|
| mysqlhotcopy.tar | File | 36 KB | 0644 |
|
| mysqlhotcopy.tar.gz | File | 11.7 KB | 0644 |
|
| mysqloptimize.tar | File | 3.86 MB | 0644 |
|
| mysqloptimize.tar.gz | File | 1007.13 KB | 0644 |
|
| nawk.tar | File | 690 KB | 0644 |
|
| nawk.tar.gz | File | 344.97 KB | 0644 |
|
| neqn.tar | File | 2.5 KB | 0644 |
|
| neqn.tar.gz | File | 644 B | 0644 |
|
| netcat-openbsd.zip | File | 35.47 KB | 0644 |
|
| netplan.zip | File | 155.89 KB | 0644 |
|
| network.tar | File | 2 KB | 0644 |
|
| network.tar.gz | File | 166 B | 0644 |
|
| networkctl.tar | File | 104 KB | 0644 |
|
| networkctl.tar.gz | File | 42.14 KB | 0644 |
|
| newgrp.tar | File | 41.5 KB | 0644 |
|
| newgrp.tar.gz | File | 13.4 KB | 0644 |
|
| newusers.tar | File | 76.5 KB | 0644 |
|
| newusers.tar.gz | File | 29.13 KB | 0644 |
|
| nfnl_osf.tar | File | 20 KB | 0644 |
|
| nfnl_osf.tar.gz | File | 5.06 KB | 0644 |
|
| nft.tar | File | 28 KB | 0644 |
|
| nft.tar.gz | File | 7.08 KB | 0644 |
|
| ngettext.tar | File | 36 KB | 0644 |
|
| ngettext.tar.gz | File | 10.84 KB | 0644 |
|
| nginx.pid.pid.tar.gz | File | 76 B | 0644 |
|
| nginx.pid.tar | File | 1.5 KB | 0644 |
|
| nginx.tar | File | 1.56 MB | 0644 |
|
| nginx.tar.gz | File | 528.32 KB | 0644 |
|
| nl.tar | File | 100.5 KB | 0644 |
|
| nl.tar.gz | File | 48.09 KB | 0644 |
|
| nsenter.tar | File | 28.5 KB | 0644 |
|
| nsenter.tar.gz | File | 7.55 KB | 0644 |
|
| nslookup.tar | File | 120.5 KB | 0644 |
|
| nslookup.tar.gz | File | 48.47 KB | 0644 |
|
| ntfs-3g.probe.probe.tar.gz | File | 3.05 KB | 0644 |
|
| ntfs-3g.probe.tar | File | 16 KB | 0644 |
|
| ntfs-3g.tar | File | 161 KB | 0644 |
|
| ntfs-3g.tar.gz | File | 66.87 KB | 0644 |
|
| ntfsclone.tar | File | 52 KB | 0644 |
|
| ntfsclone.tar.gz | File | 20 KB | 0644 |
|
| ntfscmp.tar | File | 32 KB | 0644 |
|
| ntfscmp.tar.gz | File | 9.16 KB | 0644 |
|
| ntfsfix.tar | File | 36 KB | 0644 |
|
| ntfsfix.tar.gz | File | 12.3 KB | 0644 |
|
| ntfsls.tar | File | 29 KB | 0644 |
|
| ntfsls.tar.gz | File | 8.66 KB | 0644 |
|
| ntfsmove.tar | File | 32 KB | 0644 |
|
| ntfsmove.tar.gz | File | 11.06 KB | 0644 |
|
| ntfsresize.tar | File | 64 KB | 0644 |
|
| ntfsresize.tar.gz | File | 27.94 KB | 0644 |
|
| ntfsundelete.tar | File | 52 KB | 0644 |
|
| ntfsundelete.tar.gz | File | 19.57 KB | 0644 |
|
| ntfsusermap.tar | File | 20 KB | 0644 |
|
| ntfsusermap.tar.gz | File | 7.08 KB | 0644 |
|
| numa_maps.tar | File | 4 KB | 0644 |
|
| numa_maps.tar.gz | File | 81 B | 0644 |
|
| nvacps.tar | File | 2 KB | 0644 |
|
| nvacps.tar.gz | File | 186 B | 0644 |
|
| nvacps.zip | File | 258 B | 0644 |
|
| nvidia-detector.tar | File | 2 KB | 0644 |
|
| nvidia-detector.tar.gz | File | 249 B | 0644 |
|
| on_ac_power.tar | File | 5.5 KB | 0644 |
|
| on_ac_power.tar.gz | File | 1.57 KB | 0644 |
|
| oom_adj.tar | File | 11 KB | 0644 |
|
| oom_adj.tar.gz | File | 90 B | 0644 |
|
| oom_score.tar | File | 3 KB | 0644 |
|
| oom_score.tar.gz | File | 92 B | 0644 |
|
| oom_score_adj.tar | File | 9 KB | 0644 |
|
| oom_score_adj.tar.gz | File | 96 B | 0644 |
|
| open-iscsi.zip | File | 29.66 KB | 0644 |
|
| open.tar | File | 20 KB | 0644 |
|
| open.tar.gz | File | 5.04 KB | 0644 |
|
| openssh.tar | File | 676 KB | 0644 |
|
| openssh.tar.gz | File | 280.98 KB | 0644 |
|
| openssh.zip | File | 671.5 KB | 0644 |
|
| os-prober.tar | File | 9.5 KB | 0644 |
|
| os-prober.tar.gz | File | 3.89 KB | 0644 |
|
| overlayroot-chroot.tar | File | 4 KB | 0644 |
|
| overlayroot-chroot.tar.gz | File | 1.25 KB | 0644 |
|
| pam-auth-update.tar | File | 22 KB | 0644 |
|
| pam-auth-update.tar.gz | File | 7.25 KB | 0644 |
|
| pam.d.zip | File | 522 B | 0644 |
|
| pam_getenv.tar | File | 4.5 KB | 0644 |
|
| pam_getenv.tar.gz | File | 1.43 KB | 0644 |
|
| parted.tar | File | 88 KB | 0644 |
|
| parted.tar.gz | File | 35.24 KB | 0644 |
|
| payments 2025-05-28 15-23-40.xlsx.tar | File | 8.5 KB | 0644 |
|
| payments 2025-05-28 15-23-40.xlsx.xlsx.tar.gz | File | 6.15 KB | 0644 |
|
| payments 2025-05-28 15-24-23.xlsx.tar | File | 8.5 KB | 0644 |
|
| payments 2025-05-28 15-24-23.xlsx.xlsx.tar.gz | File | 6.16 KB | 0644 |
|
| payments 2025-05-28 15-32-07.xlsx.tar | File | 8.5 KB | 0644 |
|
| payments 2025-05-28 15-32-07.xlsx.xlsx.tar.gz | File | 6.16 KB | 0644 |
|
| payments 2025-05-29 03-55-40.xlsx.tar | File | 8.5 KB | 0644 |
|
| payments 2025-05-29 03-55-40.xlsx.xlsx.tar.gz | File | 6.16 KB | 0644 |
|
| payments 2025-05-30 07-55-52.xlsx.tar | File | 9 KB | 0644 |
|
| payments 2025-05-30 07-55-52.xlsx.xlsx.tar.gz | File | 6.44 KB | 0644 |
|
| payments 2025-05-30 07-59-34.xlsx.tar | File | 9 KB | 0644 |
|
| payments 2025-05-30 07-59-34.xlsx.xlsx.tar.gz | File | 6.44 KB | 0644 |
|
| payments 2025-07-16 13-57-11.xlsx.tar | File | 8.5 KB | 0644 |
|
| payments 2025-07-16 13-57-11.xlsx.xlsx.tar.gz | File | 6.32 KB | 0644 |
|
| payments 2025-07-16 14-04-06.xlsx.tar | File | 9.5 KB | 0644 |
|
| payments 2025-07-16 14-04-06.xlsx.xlsx.tar.gz | File | 7.3 KB | 0644 |
|
| payments 2025-07-16 15-16-08.xlsx.tar | File | 9.5 KB | 0644 |
|
| payments 2025-07-16 15-16-08.xlsx.xlsx.tar.gz | File | 7.3 KB | 0644 |
|
| payments 2025-07-18 12-09-36.xlsx.tar | File | 10 KB | 0644 |
|
| payments 2025-07-18 12-09-36.xlsx.xlsx.tar.gz | File | 7.9 KB | 0644 |
|
| payments 2025-07-18 12-09-53.xlsx.tar | File | 10 KB | 0644 |
|
| payments 2025-07-18 12-09-53.xlsx.xlsx.tar.gz | File | 7.9 KB | 0644 |
|
| payments 2025-08-01 07-45-11.xlsx.tar | File | 9.5 KB | 0644 |
|
| payments 2025-08-01 07-45-11.xlsx.xlsx.tar.gz | File | 7 KB | 0644 |
|
| payments 2025-08-01 09-00-13.xlsx.tar | File | 9.5 KB | 0644 |
|
| payments 2025-08-01 09-00-13.xlsx.xlsx.tar.gz | File | 7 KB | 0644 |
|
| pbget.tar | File | 4.5 KB | 0644 |
|
| pbget.tar.gz | File | 1.3 KB | 0644 |
|
| pbput.tar | File | 4.5 KB | 0644 |
|
| pbput.tar.gz | File | 1.3 KB | 0644 |
|
| pbputs.tar | File | 4.5 KB | 0644 |
|
| pbputs.tar.gz | File | 1.3 KB | 0644 |
|
| perl.tar | File | 2.5 KB | 0644 |
|
| perl.tar.gz | File | 376 B | 0644 |
|
| perl5.34.0.34.0.tar.gz | File | 1.25 MB | 0644 |
|
| perl5.34.0.tar | File | 3.63 MB | 0644 |
|
| perlivp.tar | File | 12.5 KB | 0644 |
|
| perlivp.tar.gz | File | 3.6 KB | 0644 |
|
| perror.tar | File | 3.73 MB | 0644 |
|
| perror.tar.gz | File | 944.34 KB | 0644 |
|
| pg_config.tar | File | 3 KB | 0644 |
|
| pg_config.tar.gz | File | 772 B | 0644 |
|
| pg_ctlcluster.tar | File | 24.5 KB | 0644 |
|
| pg_ctlcluster.tar.gz | File | 7.32 KB | 0644 |
|
| pg_dropcluster.tar | File | 10 KB | 0644 |
|
| pg_dropcluster.tar.gz | File | 2.88 KB | 0644 |
|
| pg_dumpall.tar | File | 11 KB | 0644 |
|
| pg_dumpall.tar.gz | File | 3.65 KB | 0644 |
|
| pg_isready.tar | File | 11 KB | 0644 |
|
| pg_isready.tar.gz | File | 3.65 KB | 0644 |
|
| pg_lsclusters.tar | File | 7 KB | 0644 |
|
| pg_lsclusters.tar.gz | File | 2.39 KB | 0644 |
|
| pg_receivewal.tar | File | 11 KB | 0644 |
|
| pg_receivewal.tar.gz | File | 3.66 KB | 0644 |
|
| pg_restore.tar | File | 11 KB | 0644 |
|
| pg_restore.tar.gz | File | 3.65 KB | 0644 |
|
| pg_restorecluster.tar | File | 15 KB | 0644 |
|
| pg_restorecluster.tar.gz | File | 4.08 KB | 0644 |
|
| phar8.3.3.tar.gz | File | 14.48 KB | 0644 |
|
| phar8.3.tar | File | 16.5 KB | 0644 |
|
| phar8.4.4.tar.gz | File | 14.49 KB | 0644 |
|
| phar8.4.tar | File | 16.5 KB | 0644 |
|
| photo_2026-01-13_13-45-49.jpg.jpg.tar.gz | File | 141.67 KB | 0644 |
|
| photo_2026-01-13_13-45-49.jpg.tar | File | 144.5 KB | 0644 |
|
| php-fpm8.3.3.tar.gz | File | 2.13 MB | 0644 |
|
| php-fpm8.3.tar | File | 5.51 MB | 0644 |
|
| php8.3-gd.tar | File | 2 KB | 0644 |
|
| php8.3-gd.tar.gz | File | 145 B | 0644 |
|
| php8.3.3.tar.gz | File | 2.12 MB | 0644 |
|
| php8.3.tar | File | 5.53 MB | 0644 |
|
| php8.4.4.tar.gz | File | 2.19 MB | 0644 |
|
| php8.4.tar | File | 5.75 MB | 0644 |
|
| phpenmod.tar | File | 9 KB | 0644 |
|
| phpenmod.tar.gz | File | 2.38 KB | 0644 |
|
| pico.tar | File | 278.5 KB | 0644 |
|
| pico.tar.gz | File | 135.37 KB | 0644 |
|
| piconv.tar | File | 10 KB | 0644 |
|
| piconv.tar.gz | File | 3.05 KB | 0644 |
|
| pigz.tar | File | 136 KB | 0644 |
|
| pigz.tar.gz | File | 64.25 KB | 0644 |
|
| pinky.tar | File | 36 KB | 0644 |
|
| pinky.tar.gz | File | 13.52 KB | 0644 |
|
| pixmaps.zip | File | 22.62 KB | 0644 |
|
| pkcon.tar | File | 60 KB | 0644 |
|
| pkcon.tar.gz | File | 19.29 KB | 0644 |
|
| pki.zip | File | 10.51 KB | 0644 |
|
| pl2pm.tar | File | 6 KB | 0644 |
|
| pl2pm.tar.gz | File | 2.16 KB | 0644 |
|
| pldd.tar | File | 24 KB | 0644 |
|
| pldd.tar.gz | File | 6.01 KB | 0644 |
|
| plymouth.tar | File | 48 KB | 0644 |
|
| plymouth.tar.gz | File | 16.12 KB | 0644 |
|
| plymouthd.tar | File | 152.5 KB | 0644 |
|
| plymouthd.tar.gz | File | 42.64 KB | 0644 |
|
| pod2html.tar | File | 6 KB | 0644 |
|
| pod2html.tar.gz | File | 1.6 KB | 0644 |
|
| pod2man.tar | File | 16.5 KB | 0644 |
|
| pod2man.tar.gz | File | 5.95 KB | 0644 |
|
| pod2usage.tar | File | 6 KB | 0644 |
|
| pod2usage.tar.gz | File | 1.81 KB | 0644 |
|
| podchecker.tar | File | 5.5 KB | 0644 |
|
| podchecker.tar.gz | File | 1.68 KB | 0644 |
|
| pollinate.tar | File | 5.5 KB | 0644 |
|
| pollinate.tar.gz | File | 2.09 KB | 0644 |
|
| postgresql-common.zip | File | 3.63 KB | 0644 |
|
| power.tar | File | 32 KB | 0644 |
|
| power.tar.gz | File | 889 B | 0644 |
|
| poweroff.tar | File | 1.07 MB | 0644 |
|
| poweroff.tar.gz | File | 508.75 KB | 0644 |
|
| printenv.tar | File | 32 KB | 0644 |
|
| printenv.tar.gz | File | 10.12 KB | 0644 |
|
| printf.tar | File | 52 KB | 0644 |
|
| printf.tar.gz | File | 20.07 KB | 0644 |
|
| prlimit.tar | File | 28.5 KB | 0644 |
|
| prlimit.tar.gz | File | 8.7 KB | 0644 |
|
| projid_map.tar | File | 8 KB | 0644 |
|
| projid_map.tar.gz | File | 112 B | 0644 |
|
| prove.tar | File | 15 KB | 0644 |
|
| prove.tar.gz | File | 5.32 KB | 0644 |
|
| prtstat.tar | File | 24 KB | 0644 |
|
| prtstat.tar.gz | File | 6.5 KB | 0644 |
|
| psfaddtable.tar | File | 28 KB | 0644 |
|
| psfaddtable.tar.gz | File | 9.69 KB | 0644 |
|
| psfgettable.tar | File | 28 KB | 0644 |
|
| psfgettable.tar.gz | File | 9.69 KB | 0644 |
|
| psfxtable.tar | File | 28 KB | 0644 |
|
| psfxtable.tar.gz | File | 9.69 KB | 0644 |
|
| psql.tar | File | 11 KB | 0644 |
|
| psql.tar.gz | File | 3.65 KB | 0644 |
|
| pstree.tar | File | 37 KB | 0644 |
|
| pstree.tar.gz | File | 13.34 KB | 0644 |
|
| pstree.x11.tar | File | 37 KB | 0644 |
|
| pstree.x11.x11.tar.gz | File | 13.34 KB | 0644 |
|
| ptar.tar | File | 5 KB | 0644 |
|
| ptar.tar.gz | File | 1.64 KB | 0644 |
|
| pvchange.tar | File | 2.89 MB | 0644 |
|
| pvchange.tar.gz | File | 932.15 KB | 0644 |
|
| pvcreate.tar | File | 2.89 MB | 0644 |
|
| pvcreate.tar.gz | File | 932.15 KB | 0644 |
|
| pvdisplay.tar | File | 2.89 MB | 0644 |
|
| pvdisplay.tar.gz | File | 932.16 KB | 0644 |
|
| pwck.tar | File | 52 KB | 0644 |
|
| pwck.tar.gz | File | 18.29 KB | 0644 |
|
| pwdx.tar | File | 16 KB | 0644 |
|
| pwdx.tar.gz | File | 3.86 KB | 0644 |
|
| pwnkit.tar | File | 12.5 KB | 0644 |
|
| pwnkit.tar.gz | File | 3.9 KB | 0644 |
|
| pydoc3.10.10.tar.gz | File | 155 B | 0644 |
|
| pydoc3.10.tar | File | 2 KB | 0644 |
|
| python3-pkg-resources.tar | File | 36.5 KB | 0644 |
|
| python3-pkg-resources.tar.gz | File | 31.62 KB | 0644 |
|
| python3-yaml.zip | File | 34.79 KB | 0644 |
|
| python3-zope.hookable.zip | File | 3.87 KB | 0644 |
|
| python3.10.10.tar.gz | File | 2.47 MB | 0644 |
|
| python3.10.tar | File | 5.67 MB | 0644 |
|
| python3.10.tar.gz | File | 2.47 MB | 0644 |
|
| python3.zip | File | 254 B | 0644 |
|
| pzstd.tar | File | 704 KB | 0644 |
|
| pzstd.tar.gz | File | 299.87 KB | 0644 |
|
| quirks-handler.tar | File | 4 KB | 0644 |
|
| quirks-handler.tar.gz | File | 1.09 KB | 0644 |
|
| rbash.tar | File | 1.33 MB | 0644 |
|
| rbash.tar.gz | File | 650.46 KB | 0644 |
|
| readprofile.tar | File | 24 KB | 0644 |
|
| readprofile.tar.gz | File | 6.76 KB | 0644 |
|
| reboot-required.pkgs.pkgs.tar.gz | File | 114 B | 0644 |
|
| reboot-required.pkgs.tar | File | 2 KB | 0644 |
|
| reboot.tar | File | 1.07 MB | 0644 |
|
| reboot.tar.gz | File | 508.75 KB | 0644 |
|
| redis-benchmark.tar | File | 732.5 KB | 0644 |
|
| redis-benchmark.tar.gz | File | 206.08 KB | 0644 |
|
| redis-check-aof.tar | File | 1.41 MB | 0644 |
|
| redis-check-aof.tar.gz | File | 656.89 KB | 0644 |
|
| redis-check-rdb.tar | File | 1.41 MB | 0644 |
|
| redis-check-rdb.tar.gz | File | 656.89 KB | 0644 |
|
| redis-server.tar | File | 1.41 MB | 0644 |
|
| redis-server.tar.gz | File | 656.89 KB | 0644 |
|
| remove-shell.tar | File | 3 KB | 0644 |
|
| remove-shell.tar.gz | File | 628 B | 0644 |
|
| resize2fs.tar | File | 68 KB | 0644 |
|
| resize2fs.tar.gz | File | 26.72 KB | 0644 |
|
| resizecons.tar | File | 28 KB | 0644 |
|
| resizecons.tar.gz | File | 8.66 KB | 0644 |
|
| resolveip.tar | File | 3.54 MB | 0644 |
|
| resolveip.tar.gz | File | 891.42 KB | 0644 |
|
| rmiregistry.tar | File | 16 KB | 0644 |
|
| rmiregistry.tar.gz | File | 2.5 KB | 0644 |
|
| rmt-tar.tar | File | 60.5 KB | 0644 |
|
| rmt-tar.tar.gz | File | 25.78 KB | 0644 |
|
| rotatelogs.tar | File | 28 KB | 0644 |
|
| rotatelogs.tar.gz | File | 7.88 KB | 0644 |
|
| rrsync.tar | File | 14 KB | 0644 |
|
| rrsync.tar.gz | File | 4.51 KB | 0644 |
|
| rsync.zip | File | 74.36 KB | 0644 |
|
| rsyslogd.tar | File | 769 KB | 0644 |
|
| rsyslogd.tar.gz | File | 330.26 KB | 0644 |
|
| rtc.tar | File | 2 KB | 0644 |
|
| rtc.tar.gz | File | 274 B | 0644 |
|
| rtmon.tar | File | 92 KB | 0644 |
|
| rtmon.tar.gz | File | 37.85 KB | 0644 |
|
| run-one.tar | File | 5.5 KB | 0644 |
|
| run-one.tar.gz | File | 1.67 KB | 0644 |
|
| run-parts.tar | File | 28.5 KB | 0644 |
|
| run-parts.tar.gz | File | 7.93 KB | 0644 |
|
| run-this-one.tar | File | 5.5 KB | 0644 |
|
| run-this-one.tar.gz | File | 1.68 KB | 0644 |
|
| runcon.tar | File | 36.5 KB | 0644 |
|
| runcon.tar.gz | File | 12.01 KB | 0644 |
|
| runlevel.tar | File | 1.07 MB | 0644 |
|
| runlevel.tar.gz | File | 508.75 KB | 0644 |
|
| rvim.tar | File | 3.61 MB | 0644 |
|
| rvim.tar.gz | File | 1.85 MB | 0644 |
|
| samurai_activity.log.log.tar.gz | File | 294 B | 0644 |
|
| samurai_activity.log.tar | File | 2 KB | 0644 |
|
| sar.sysstat.sysstat.tar.gz | File | 53.28 KB | 0644 |
|
| sar.sysstat.tar | File | 135 KB | 0644 |
|
| sbvarsign.tar | File | 24.5 KB | 0644 |
|
| sbvarsign.tar.gz | File | 7.77 KB | 0644 |
|
| sbverify.tar | File | 36.5 KB | 0644 |
|
| sbverify.tar.gz | File | 11.54 KB | 0644 |
|
| sched.tar | File | 11.5 KB | 0644 |
|
| sched.tar.gz | File | 538 B | 0644 |
|
| schedstat.tar | File | 6 KB | 0644 |
|
| schedstat.tar.gz | File | 94 B | 0644 |
|
| screendump.tar | File | 16 KB | 0644 |
|
| screendump.tar.gz | File | 3.92 KB | 0644 |
|
| scsi.zip | File | 6.24 KB | 0644 |
|
| scsi_satl.tar | File | 5.5 KB | 0644 |
|
| scsi_satl.tar.gz | File | 1.6 KB | 0644 |
|
| sensible-pager.tar | File | 2.5 KB | 0644 |
|
| sensible-pager.tar.gz | File | 455 B | 0644 |
|
| sensors.d.tar | File | 1.5 KB | 0644 |
|
| sensors.d.tar.gz | File | 75 B | 0644 |
|
| sensors3.conf.conf.tar.gz | File | 1.93 KB | 0644 |
|
| sensors3.conf.tar | File | 12 KB | 0644 |
|
| services.tar | File | 14.5 KB | 0644 |
|
| services.tar.gz | File | 5.32 KB | 0644 |
|
| session-migration.tar | File | 24 KB | 0644 |
|
| session-migration.tar.gz | File | 5.17 KB | 0644 |
|
| sessionid.tar | File | 8 KB | 0644 |
|
| sessionid.tar.gz | File | 102 B | 0644 |
|
| setgroups.tar | File | 9 KB | 0644 |
|
| setgroups.tar.gz | File | 95 B | 0644 |
|
| setlogcons.tar | File | 16 KB | 0644 |
|
| setlogcons.tar.gz | File | 3.37 KB | 0644 |
|
| setvtrgb.tar | File | 16 KB | 0644 |
|
| setvtrgb.tar.gz | File | 4.7 KB | 0644 |
|
| sfdisk.tar | File | 104 KB | 0644 |
|
| sfdisk.tar.gz | File | 40.41 KB | 0644 |
|
| sg_copy_results.tar | File | 25 KB | 0644 |
|
| sg_copy_results.tar.gz | File | 6.25 KB | 0644 |
|
| sg_decode_sense.tar | File | 16.5 KB | 0644 |
|
| sg_decode_sense.tar.gz | File | 5.66 KB | 0644 |
|
| sg_opcodes.tar | File | 37 KB | 0644 |
|
| sg_opcodes.tar.gz | File | 11.58 KB | 0644 |
|
| sg_raw.tar | File | 28.5 KB | 0644 |
|
| sg_raw.tar.gz | File | 8.98 KB | 0644 |
|
| sg_read_long.tar | File | 16.5 KB | 0644 |
|
| sg_read_long.tar.gz | File | 4.82 KB | 0644 |
|
| sg_reassign.tar | File | 16.5 KB | 0644 |
|
| sg_reassign.tar.gz | File | 5.87 KB | 0644 |
|
| sg_rmsn.tar | File | 16.5 KB | 0644 |
|
| sg_rmsn.tar.gz | File | 3.97 KB | 0644 |
|
| sg_sanitize.tar | File | 29 KB | 0644 |
|
| sg_sanitize.tar.gz | File | 9.21 KB | 0644 |
|
| sg_sat_set_features.tar | File | 20.5 KB | 0644 |
|
| sg_sat_set_features.tar.gz | File | 5.46 KB | 0644 |
|
| sg_ses_microcode.tar | File | 29 KB | 0644 |
|
| sg_ses_microcode.tar.gz | File | 10.11 KB | 0644 |
|
| sg_sync.tar | File | 16.5 KB | 0644 |
|
| sg_sync.tar.gz | File | 4.5 KB | 0644 |
|
| sg_vpd.tar | File | 116 KB | 0644 |
|
| sg_vpd.tar.gz | File | 44.28 KB | 0644 |
|
| sg_wr_mode.tar | File | 24.5 KB | 0644 |
|
| sg_wr_mode.tar.gz | File | 7.38 KB | 0644 |
|
| sg_write_verify.tar | File | 28.5 KB | 0644 |
|
| sg_write_verify.tar.gz | File | 7.22 KB | 0644 |
|
| sg_write_x.tar | File | 57.5 KB | 0644 |
|
| sg_write_x.tar.gz | File | 20.81 KB | 0644 |
|
| sgdisk.tar | File | 164 KB | 0644 |
|
| sgdisk.tar.gz | File | 73.45 KB | 0644 |
|
| sha256sum.tar | File | 52 KB | 0644 |
|
| sha256sum.tar.gz | File | 22.17 KB | 0644 |
|
| sha512sum.tar | File | 60 KB | 0644 |
|
| sha512sum.tar.gz | File | 24.1 KB | 0644 |
|
| shablon-akta-sverki-1-1.docx.docx.tar.gz | File | 22.85 KB | 0644 |
|
| shablon-akta-sverki-1-1.docx.tar | File | 58 KB | 0644 |
|
| shasum.tar | File | 11.5 KB | 0644 |
|
| shasum.tar.gz | File | 4.06 KB | 0644 |
|
| shm.tar | File | 2.5 KB | 0644 |
|
| shm.tar.gz | File | 265 B | 0644 |
|
| showconsolefont.tar | File | 20 KB | 0644 |
|
| showconsolefont.tar.gz | File | 6.97 KB | 0644 |
|
| shutdown.tar | File | 1.07 MB | 0644 |
|
| shutdown.tar.gz | File | 508.75 KB | 0644 |
|
| skel.tar | File | 8 KB | 0644 |
|
| skel.tar.gz | File | 2.18 KB | 0644 |
|
| slabtop.tar | File | 24 KB | 0644 |
|
| slabtop.tar.gz | File | 7.01 KB | 0644 |
|
| smaps.tar | File | 5 KB | 0644 |
|
| smaps.tar.gz | File | 76 B | 0644 |
|
| smaps_rollup.tar | File | 6 KB | 0644 |
|
| smaps_rollup.tar.gz | File | 83 B | 0644 |
|
| snapd.tar | File | 32.5 KB | 0644 |
|
| snapd.tar.gz | File | 29.77 KB | 0644 |
|
| snapd.zip | File | 2.29 KB | 0644 |
|
| snapfuse.tar | File | 40 KB | 0644 |
|
| snapfuse.tar.gz | File | 15.45 KB | 0644 |
|
| snice.tar | File | 32 KB | 0644 |
|
| snice.tar.gz | File | 9.86 KB | 0644 |
|
| soelim.tar | File | 32 KB | 0644 |
|
| soelim.tar.gz | File | 14.39 KB | 0644 |
|
| sos-collector.tar | File | 3 KB | 0644 |
|
| sos-collector.tar.gz | File | 713 B | 0644 |
|
| sosreport.tar | File | 3 KB | 0644 |
|
| sosreport.tar.gz | File | 705 B | 0644 |
|
| split.tar | File | 52.5 KB | 0644 |
|
| split.tar.gz | File | 21.93 KB | 0644 |
|
| splitfont.tar | File | 16 KB | 0644 |
|
| splitfont.tar.gz | File | 2.97 KB | 0644 |
|
| squashfs-tools.zip | File | 2.56 KB | 0644 |
|
| src.tar | File | 100.52 MB | 0644 |
|
| src.tar.gz | File | 22.38 MB | 0644 |
|
| ssh-add.tar | File | 168 KB | 0644 |
|
| ssh-add.tar.gz | File | 77.31 KB | 0644 |
|
| ssh-agent.tar | File | 288 KB | 0644 |
|
| ssh-agent.tar.gz | File | 120.2 KB | 0644 |
|
| ssh.tar | File | 829 KB | 0644 |
|
| ssh.tar.gz | File | 379.08 KB | 0644 |
|
| sshd.tar | File | 901.5 KB | 0644 |
|
| sshd.tar.gz | File | 412.18 KB | 0644 |
|
| stat.tar | File | 86.5 KB | 0644 |
|
| stat.tar.gz | File | 165 B | 0644 |
|
| stat.zip | File | 1.95 KB | 0644 |
|
| statm.tar | File | 5 KB | 0644 |
|
| statm.tar.gz | File | 91 B | 0644 |
|
| status.tar | File | 10.5 KB | 0644 |
|
| status.tar.gz | File | 422 B | 0644 |
|
| stdbuf.tar | File | 44.5 KB | 0644 |
|
| stdbuf.tar.gz | File | 18.33 KB | 0644 |
|
| subgid.tar | File | 2 KB | 0644 |
|
| subgid.tar.gz | File | 112 B | 0644 |
|
| sudo.tar | File | 228.5 KB | 0644 |
|
| sudo.tar.gz | File | 100.2 KB | 0644 |
|
| sudo_logsrvd.conf.conf.tar.gz | File | 2.96 KB | 0644 |
|
| sudo_logsrvd.conf.tar | File | 11 KB | 0644 |
|
| sudo_logsrvd.tar | File | 202 KB | 0644 |
|
| sudo_logsrvd.tar.gz | File | 83.83 KB | 0644 |
|
| sudo_sendlog.tar | File | 109 KB | 0644 |
|
| sudo_sendlog.tar.gz | File | 41.41 KB | 0644 |
|
| sudoreplay.tar | File | 89.5 KB | 0644 |
|
| sudoreplay.tar.gz | File | 35.02 KB | 0644 |
|
| swapoff.tar | File | 24 KB | 0644 |
|
| swapoff.tar.gz | File | 6.6 KB | 0644 |
|
| swaps.tar | File | 2 KB | 0644 |
|
| swaps.tar.gz | File | 152 B | 0644 |
|
| switch_root.tar | File | 24 KB | 0644 |
|
| switch_root.tar.gz | File | 4.95 KB | 0644 |
|
| sysstat.zip | File | 8.42 KB | 0644 |
|
| systemctl.tar | File | 1.07 MB | 0644 |
|
| systemctl.tar.gz | File | 508.74 KB | 0644 |
|
| systemd-ask-password.tar | File | 20 KB | 0644 |
|
| systemd-ask-password.tar.gz | File | 5.26 KB | 0644 |
|
| systemd-cgls.tar | File | 24 KB | 0644 |
|
| systemd-cgls.tar.gz | File | 5.91 KB | 0644 |
|
| systemd-cgtop.tar | File | 40 KB | 0644 |
|
| systemd-cgtop.tar.gz | File | 12.93 KB | 0644 |
|
| systemd-escape.tar | File | 24 KB | 0644 |
|
| systemd-escape.tar.gz | File | 5.59 KB | 0644 |
|
| systemd-hwdb.tar | File | 120.5 KB | 0644 |
|
| systemd-hwdb.tar.gz | File | 56.12 KB | 0644 |
|
| systemd-inhibit.tar | File | 24 KB | 0644 |
|
| systemd-inhibit.tar.gz | File | 6.98 KB | 0644 |
|
| systemd-mount.tar | File | 52.5 KB | 0644 |
|
| systemd-mount.tar.gz | File | 19.8 KB | 0644 |
|
| systemd-run.tar | File | 64.5 KB | 0644 |
|
| systemd-run.tar.gz | File | 22.03 KB | 0644 |
|
| tabs.tar | File | 20 KB | 0644 |
|
| tabs.tar.gz | File | 6.39 KB | 0644 |
|
| tapestat.tar | File | 28 KB | 0644 |
|
| tapestat.tar.gz | File | 9.16 KB | 0644 |
|
| tarcat.tar | File | 2.5 KB | 0644 |
|
| tarcat.tar.gz | File | 607 B | 0644 |
|
| tbl.tar | File | 128 KB | 0644 |
|
| tbl.tar.gz | File | 53.02 KB | 0644 |
|
| tc.tar | File | 616 KB | 0644 |
|
| tc.tar.gz | File | 263.82 KB | 0644 |
|
| tc.zip | File | 121.12 KB | 0644 |
|
| telnet.tar | File | 109.5 KB | 0644 |
|
| telnet.tar.gz | File | 45.18 KB | 0644 |
|
| thin_ls.tar | File | 1.33 MB | 0644 |
|
| thin_ls.tar.gz | File | 510.81 KB | 0644 |
|
| thin_metadata_size.tar | File | 1.33 MB | 0644 |
|
| thin_metadata_size.tar.gz | File | 510.82 KB | 0644 |
|
| thin_rmap.tar | File | 1.33 MB | 0644 |
|
| thin_rmap.tar.gz | File | 510.81 KB | 0644 |
|
| thin_trim.tar | File | 1.33 MB | 0644 |
|
| thin_trim.tar.gz | File | 510.81 KB | 0644 |
|
| timedatectl.tar | File | 48 KB | 0644 |
|
| timedatectl.tar.gz | File | 15.88 KB | 0644 |
|
| timens_offsets.tar | File | 3 KB | 0644 |
|
| timens_offsets.tar.gz | File | 122 B | 0644 |
|
| timers.tar | File | 5 KB | 0644 |
|
| timers.tar.gz | File | 77 B | 0644 |
|
| timerslack_ns.tar | File | 4 KB | 0644 |
|
| timerslack_ns.tar.gz | File | 86 B | 0644 |
|
| timesync.tar | File | 1.5 KB | 0644 |
|
| timesync.tar.gz | File | 75 B | 0644 |
|
| tipc.tar | File | 92 KB | 0644 |
|
| tipc.tar.gz | File | 35.1 KB | 0644 |
|
| tkconch3.tar | File | 2.5 KB | 0644 |
|
| tkconch3.tar.gz | File | 556 B | 0644 |
|
| tload.tar | File | 20 KB | 0644 |
|
| tload.tar.gz | File | 5.09 KB | 0644 |
|
| tmpfiles.d.tar | File | 2 KB | 0644 |
|
| tmpfiles.d.tar.gz | File | 239 B | 0644 |
|
| tmpfiles.d.zip | File | 15.58 KB | 0644 |
|
| tmux.tar | File | 16 KB | 0644 |
|
| tmux.tar.gz | File | 6.08 KB | 0644 |
|
| tnftp.tar | File | 25 KB | 0644 |
|
| tnftp.tar.gz | File | 7.91 KB | 0644 |
|
| tr.tar | File | 48.5 KB | 0644 |
|
| tr.tar.gz | File | 18.09 KB | 0644 |
|
| trial3.tar | File | 2.5 KB | 0644 |
|
| trial3.tar.gz | File | 556 B | 0644 |
|
| troff.tar | File | 720.5 KB | 0644 |
|
| troff.tar.gz | File | 257.09 KB | 0644 |
|
| true.tar | File | 28 KB | 0644 |
|
| true.tar.gz | File | 9.52 KB | 0644 |
|
| truncate.tar | File | 36.5 KB | 0644 |
|
| truncate.tar.gz | File | 13.33 KB | 0644 |
|
| tsort.tar | File | 48.5 KB | 0644 |
|
| tsort.tar.gz | File | 17.71 KB | 0644 |
|
| tune2fs.tar | File | 104.5 KB | 0644 |
|
| tune2fs.tar.gz | File | 44.96 KB | 0644 |
|
| tzconfig.tar | File | 2 KB | 0644 |
|
| tzconfig.tar.gz | File | 180 B | 0644 |
|
| ubuntu-advantage.tar | File | 2 KB | 0644 |
|
| ubuntu-advantage.tar.gz | File | 142 B | 0644 |
|
| ubuntu-distro-info.tar | File | 24.5 KB | 0644 |
|
| ubuntu-distro-info.tar.gz | File | 8.03 KB | 0644 |
|
| ubuntu-drivers.tar | File | 20 KB | 0644 |
|
| ubuntu-drivers.tar.gz | File | 4.06 KB | 0644 |
|
| ucf.tar | File | 49.5 KB | 0644 |
|
| ucf.tar.gz | File | 10.9 KB | 0644 |
|
| ucf.zip | File | 30.67 KB | 0644 |
|
| udev.tar | File | 64.5 KB | 0644 |
|
| udev.tar.gz | File | 7.52 KB | 0644 |
|
| ufw.lock.lock.tar.gz | File | 75 B | 0644 |
|
| ufw.lock.tar | File | 1.5 KB | 0644 |
|
| ufw.tar | File | 6.5 KB | 0644 |
|
| ufw.tar.gz | File | 1.92 KB | 0644 |
|
| ufw.zip | File | 20.07 KB | 0644 |
|
| uid_map.tar | File | 5 KB | 0644 |
|
| uid_map.tar.gz | File | 108 B | 0644 |
|
| unicode_start.tar | File | 4.5 KB | 0644 |
|
| unicode_start.tar.gz | File | 1.43 KB | 0644 |
|
| unicode_stop.tar | File | 2.5 KB | 0644 |
|
| unicode_stop.tar.gz | File | 431 B | 0644 |
|
| unix_chkpwd.tar | File | 28 KB | 0644 |
|
| unix_chkpwd.tar.gz | File | 9.2 KB | 0644 |
|
| unix_update.tar | File | 32 KB | 0644 |
|
| unix_update.tar.gz | File | 11.88 KB | 0644 |
|
| unlink.tar | File | 32.5 KB | 0644 |
|
| unlink.tar.gz | File | 10.31 KB | 0644 |
|
| unxz.tar | File | 84.5 KB | 0644 |
|
| unxz.tar.gz | File | 33.92 KB | 0644 |
|
| update-ca-certificates.tar | File | 7 KB | 0644 |
|
| update-ca-certificates.tar.gz | File | 2.24 KB | 0644 |
|
| update-grub2.tar | File | 2 KB | 0644 |
|
| update-grub2.tar.gz | File | 152 B | 0644 |
|
| update-initramfs.tar | File | 8.5 KB | 0644 |
|
| update-initramfs.tar.gz | File | 2.3 KB | 0644 |
|
| update-java-alternatives.tar | File | 5 KB | 0644 |
|
| update-java-alternatives.tar.gz | File | 1.21 KB | 0644 |
|
| update-locale.tar | File | 4.5 KB | 0644 |
|
| update-locale.tar.gz | File | 1.38 KB | 0644 |
|
| update-passwd.tar | File | 36.5 KB | 0644 |
|
| update-passwd.tar.gz | File | 11.17 KB | 0644 |
|
| update-pciids.tar | File | 3.5 KB | 0644 |
|
| update-pciids.tar.gz | File | 847 B | 0644 |
|
| update-rc.d.d.tar.gz | File | 4.82 KB | 0644 |
|
| update-rc.d.tar | File | 18.5 KB | 0644 |
|
| upgrade-from-grub-legacy.tar | File | 3.5 KB | 0644 |
|
| upgrade-from-grub-legacy.tar.gz | File | 959 B | 0644 |
|
| uptime.tar | File | 16 KB | 0644 |
|
| uptime.tar.gz | File | 3.67 KB | 0644 |
|
| usbhid-dump.tar | File | 32 KB | 0644 |
|
| usbhid-dump.tar.gz | File | 9.29 KB | 0644 |
|
| useradd.tar | File | 129.5 KB | 0644 |
|
| useradd.tar.gz | File | 49.92 KB | 0644 |
|
| usermod.tar | File | 125 KB | 0644 |
|
| usermod.tar.gz | File | 49.68 KB | 0644 |
|
| users.tar | File | 37.5 KB | 0644 |
|
| users.tar.gz | File | 11.06 KB | 0644 |
|
| uuidd.tar | File | 32.5 KB | 0644 |
|
| uuidd.tar.gz | File | 9.76 KB | 0644 |
|
| v8-container.h.h.tar.gz | File | 1.97 KB | 0644 |
|
| v8-container.h.tar | File | 7.5 KB | 0644 |
|
| v8-source-location.h.h.tar.gz | File | 1011 B | 0644 |
|
| v8-source-location.h.tar | File | 4.5 KB | 0644 |
|
| v8-typed-array.h.h.tar.gz | File | 1.56 KB | 0644 |
|
| v8-typed-array.h.tar | File | 13 KB | 0644 |
|
| validlocale.tar | File | 3.5 KB | 0644 |
|
| validlocale.tar.gz | File | 950 B | 0644 |
|
| vcstime.tar | File | 16 KB | 0644 |
|
| vcstime.tar.gz | File | 2.29 KB | 0644 |
|
| vfio.tar | File | 1.5 KB | 0644 |
|
| vfio.tar.gz | File | 66 B | 0644 |
|
| vfio.zip | File | 142 B | 0644 |
|
| vgcfgbackup.tar | File | 2.89 MB | 0644 |
|
| vgcfgbackup.tar.gz | File | 932.16 KB | 0644 |
|
| vgcfgrestore.tar | File | 2.89 MB | 0644 |
|
| vgcfgrestore.tar.gz | File | 932.16 KB | 0644 |
|
| vgconvert.tar | File | 2.89 MB | 0644 |
|
| vgconvert.tar.gz | File | 932.16 KB | 0644 |
|
| vgcreate.tar | File | 2.89 MB | 0644 |
|
| vgcreate.tar.gz | File | 932.15 KB | 0644 |
|
| vgdisplay.tar | File | 2.89 MB | 0644 |
|
| vgdisplay.tar.gz | File | 932.16 KB | 0644 |
|
| vgexport.tar | File | 2.89 MB | 0644 |
|
| vgexport.tar.gz | File | 932.15 KB | 0644 |
|
| vgimportclone.tar | File | 2.89 MB | 0644 |
|
| vgimportclone.tar.gz | File | 932.16 KB | 0644 |
|
| vgmerge.tar | File | 2.89 MB | 0644 |
|
| vgmerge.tar.gz | File | 932.15 KB | 0644 |
|
| vgremove.tar | File | 2.89 MB | 0644 |
|
| vgremove.tar.gz | File | 932.15 KB | 0644 |
|
| vgrename.tar | File | 2.89 MB | 0644 |
|
| vgrename.tar.gz | File | 932.15 KB | 0644 |
|
| vgsplit.tar | File | 2.89 MB | 0644 |
|
| vgsplit.tar.gz | File | 932.15 KB | 0644 |
|
| viewres.tar | File | 33 KB | 0644 |
|
| viewres.tar.gz | File | 10.34 KB | 0644 |
|
| vim.basic.basic.tar.gz | File | 1.85 MB | 0644 |
|
| vim.basic.tar | File | 3.61 MB | 0644 |
|
| vimdiff.tar | File | 3.61 MB | 0644 |
|
| vimdiff.tar.gz | File | 1.85 MB | 0644 |
|
| vipw.tar | File | 58.5 KB | 0644 |
|
| vipw.tar.gz | File | 19.4 KB | 0644 |
|
| vmhgfs-fuse.tar | File | 48.5 KB | 0644 |
|
| vmhgfs-fuse.tar.gz | File | 20.11 KB | 0644 |
|
| vmware-checkvm.tar | File | 16 KB | 0644 |
|
| vmware-checkvm.tar.gz | File | 2.76 KB | 0644 |
|
| vmware-rpctool.tar | File | 20 KB | 0644 |
|
| vmware-rpctool.tar.gz | File | 6.88 KB | 0644 |
|
| wchan.tar | File | 6 KB | 0644 |
|
| wchan.tar.gz | File | 87 B | 0644 |
|
| wget.tar | File | 461 KB | 0644 |
|
| wget.tar.gz | File | 218.14 KB | 0644 |
|
| wgetrc.tar | File | 6.5 KB | 0644 |
|
| wgetrc.tar.gz | File | 2.25 KB | 0644 |
|
| whatis.tar | File | 49 KB | 0644 |
|
| whatis.tar.gz | File | 17.01 KB | 0644 |
|
| whiptail.tar | File | 32 KB | 0644 |
|
| whiptail.tar.gz | File | 11.12 KB | 0644 |
|
| wipefs.tar | File | 40 KB | 0644 |
|
| wipefs.tar.gz | File | 12.6 KB | 0644 |
|
| write.tar | File | 24 KB | 0644 |
|
| write.tar.gz | File | 6.44 KB | 0644 |
|
| x86_64-linux-gnu-ld.tar | File | 1.66 MB | 0644 |
|
| x86_64-linux-gnu-ld.tar.gz | File | 264.18 KB | 0644 |
|
| x86_64-linux-gnu-nm.tar | File | 45.5 KB | 0644 |
|
| x86_64-linux-gnu-nm.tar.gz | File | 18.56 KB | 0644 |
|
| xargs.tar | File | 64 KB | 0644 |
|
| xargs.tar.gz | File | 26.82 KB | 0644 |
|
| xauth.tar | File | 56.5 KB | 0644 |
|
| xauth.tar.gz | File | 20.24 KB | 0644 |
|
| xdpyinfo.tar | File | 41 KB | 0644 |
|
| xdpyinfo.tar.gz | File | 13.55 KB | 0644 |
|
| xfs_admin.tar | File | 3 KB | 0644 |
|
| xfs_admin.tar.gz | File | 728 B | 0644 |
|
| xfs_db.tar | File | 654 KB | 0644 |
|
| xfs_db.tar.gz | File | 295.77 KB | 0644 |
|
| xfs_estimate.tar | File | 16 KB | 0644 |
|
| xfs_estimate.tar.gz | File | 4.2 KB | 0644 |
|
| xfs_freeze.tar | File | 2.5 KB | 0644 |
|
| xfs_freeze.tar.gz | File | 515 B | 0644 |
|
| xfs_fsr.tar | File | 44 KB | 0644 |
|
| xfs_fsr.tar.gz | File | 18.24 KB | 0644 |
|
| xfs_growfs.tar | File | 40 KB | 0644 |
|
| xfs_growfs.tar.gz | File | 14.46 KB | 0644 |
|
| xfs_info.tar | File | 3 KB | 0644 |
|
| xfs_info.tar.gz | File | 791 B | 0644 |
|
| xfs_io.tar | File | 201.5 KB | 0644 |
|
| xfs_io.tar.gz | File | 92.66 KB | 0644 |
|
| xfs_metadump.tar | File | 2.5 KB | 0644 |
|
| xfs_metadump.tar.gz | File | 499 B | 0644 |
|
| xfs_quota.tar | File | 92 KB | 0644 |
|
| xfs_quota.tar.gz | File | 37.75 KB | 0644 |
|
| xfs_repair.tar | File | 601 KB | 0644 |
|
| xfs_repair.tar.gz | File | 299.49 KB | 0644 |
|
| xfs_rtcp.tar | File | 20 KB | 0644 |
|
| xfs_rtcp.tar.gz | File | 4.87 KB | 0644 |
|
| xfs_scrub.tar | File | 108 KB | 0644 |
|
| xfs_scrub.tar.gz | File | 48.07 KB | 0644 |
|
| xkill.tar | File | 16 KB | 0644 |
|
| xkill.tar.gz | File | 5.01 KB | 0644 |
|
| xlsclients.tar | File | 20 KB | 0644 |
|
| xlsclients.tar.gz | File | 6.18 KB | 0644 |
|
| xtables-legacy-multi.tar | File | 98.5 KB | 0644 |
|
| xtables-legacy-multi.tar.gz | File | 36.25 KB | 0644 |
|
| xtables-monitor.tar | File | 221 KB | 0644 |
|
| xtables-monitor.tar.gz | File | 91.05 KB | 0644 |
|
| xvinfo.tar | File | 20 KB | 0644 |
|
| xvinfo.tar.gz | File | 5.33 KB | 0644 |
|
| xzcat.tar | File | 84.5 KB | 0644 |
|
| xzcat.tar.gz | File | 33.92 KB | 0644 |
|
| xzcmp.tar | File | 8.5 KB | 0644 |
|
| xzcmp.tar.gz | File | 2.67 KB | 0644 |
|
| xzegrep.tar | File | 7.5 KB | 0644 |
|
| xzegrep.tar.gz | File | 2.62 KB | 0644 |
|
| xzless.tar | File | 3.5 KB | 0644 |
|
| xzless.tar.gz | File | 1.11 KB | 0644 |
|
| xzmore.tar | File | 4 KB | 0644 |
|
| xzmore.tar.gz | File | 1.2 KB | 0644 |
|
| zabbix-agent-timeweb.tar | File | 2 KB | 0644 |
|
| zabbix-agent-timeweb.tar.gz | File | 98 B | 0644 |
|
| zdiff.tar | File | 7.5 KB | 0644 |
|
| zdiff.tar.gz | File | 1.96 KB | 0644 |
|
| zerofree.tar | File | 16 KB | 0644 |
|
| zerofree.tar.gz | File | 3.41 KB | 0644 |
|
| zipdetails.tar | File | 60.5 KB | 0644 |
|
| zipdetails.tar.gz | File | 15.28 KB | 0644 |
|
| zipinfo.tar | File | 172 KB | 0644 |
|
| zipinfo.tar.gz | File | 81.22 KB | 0644 |
|
| zoneinfo-icu.tar | File | 466 KB | 0644 |
|
| zoneinfo-icu.tar.gz | File | 177.45 KB | 0644 |
|
| zstd.tar | File | 856.5 KB | 0644 |
|
| zstd.tar.gz | File | 376.92 KB | 0644 |
|
| zstdcat.tar | File | 856.5 KB | 0644 |
|
| zstdcat.tar.gz | File | 376.92 KB | 0644 |
|
| zstdless.tar | File | 2 KB | 0644 |
|
| zstdless.tar.gz | File | 115 B | 0644 |
|
| zstdmt.tar | File | 856.5 KB | 0644 |
|
| zstdmt.tar.gz | File | 376.92 KB | 0644 |
|