command
stringlengths
1
42
description
stringlengths
29
182k
name
stringlengths
7
64.9k
synopsis
stringlengths
4
85.3k
options
stringclasses
593 values
examples
stringclasses
455 values
strip
strip removes or modifies the symbol table attached to the output of the assembler and link editor. This is useful to save space after a program has been debugged and to limit dynamically bound symbols. strip no longer removes relocation entries under any condition. Instead, it updates the external relocation entries ...
strip - remove symbols
strip [ option ] name ...
The first set of options indicate symbols that are to be saved in the resulting output file. -u Save all undefined symbols. This is intended for use with relocatable objects to save symbols referred to by external relocation entries. Note that common symbols are also referred to by external relocation entries and...
When creating a stub library the -c and -x are typically used: strip -x -c libfoo -o libfoo.stripped LIMITATIONS Not every layout of a Mach-O file can be stripped by this program. But all layouts produced by the Apple compiler system can be stripped. Apple Inc. June 23, 2023 STRIP(1)
b2
null
null
null
null
null
lupdate
null
null
null
null
null
gst-typefind-1.0
gst-typefind-1.0 uses the GStreamer type finding system to determine the relevant GStreamer plugin to parse or decode file, and the corresponding media type.
gst-typefind-1.0 - print Media type of file
gst-typefind-1.0 <file>
gst-typefind-1.0 accepts the following options: --help Print help synopsis and available FLAGS --gst-info-mask=FLAGS GStreamer info flags to set (list with --help) --gst-debug-mask=FLAGS GStreamer debugging flags to set (list with --help) --gst-mask=FLAGS GStreamer info and debugging flags to set (list with --help) --...
null
grpc_cpp_plugin
null
null
null
null
null
tifffile
null
null
null
null
null
arm64-apple-darwin20.0.0-indr
Indr builds the output file, output, by translating each symbol name listed in the file list to the same name with and underbar prepended to it in all the objects in the input file, input. This is used in building the ANSI C library and ``hiding'' non-ANSI C library symbols that are used by the ANSI C routines. The in...
indr - add indirection to symbols in object files
indr [-n] [[-arch arch_type] ...] list input output indr [-n] [[-arch_indr arch_type list] ...] input output
null
null
surya_ocr
null
null
null
null
null
bitcode_strip
bitcode_strip strips Mach-O files and Universal files containing LLVM bitcode, either by removing the bitcode or by removing the native executable code. If the Mach-O file or architecture in an Universal file does not have a bitcode segment it is left essentially unchanged. By default bitcode_strip will remove the code...
bitcode_strip - remove or leave the bitcode segment in a Mach-O file
bitcode_strip input [ -r | -m | -l ] [ -v ] [ -keep_cs ] -o output
-r Remove the __LLVM bitcode segment entirely. -m Remove the bitcode from the __LLVM segment, leaving behind a marker. -l Remove all of the native executable code, leaving the LLVM bitcode behind. In this case, bitcode_strip will take care to preserve the (__TEXT,__info_plist) section while removing the res...
null
resolveip
The resolveip utility resolves host names to IP addresses and vice versa. Invoke resolveip like this: shell> resolveip [options] {host_name|ip-addr} ... resolveip supports the following options. • --help, --info, -?, -I Display a help message and exit. • --silent, -s Silent mode. Produce less output. • --version,...
resolveip - resolve host name to IP address or vice versa
resolveip [options] {host_name|ip-addr} ...
null
null
opj_dump
null
opj_dump - This program reads in a jpeg2000 image and dumps the contents to stdout. It is part of the OpenJPEG library. Valid input image extensions are .j2k, .jp2, .jpt
opj_dump -i infile.j2k opj_dump -ImgDir images/ Dump all files in images/ opj_dump -h Print help message and exit
-i name (jpeg2000 input file name) -ImgDir directory_name (directory containing jpeg2000 input files) AUTHORS Copyright (c) 2010, Mathieu Malaterre SEE ALSO opj_compress(1) opj_decompress(1) opj_dump Version 2.1.1 opj_dump(1)
null
2to3
null
null
null
null
null
jupyter-nbclassic
null
null
null
null
null
bsdcpio
cpio copies files between archives and directories. This implementation can extract from tar, pax, cpio, zip, jar, ar, and ISO 9660 cdrom images and can create tar, pax, cpio, ar, and shar archives. The first option to cpio is a mode indicator from the following list: -i Input. Read an archive from standard inpu...
cpio – copy files to and from archives
cpio -i [options] [pattern ...] [< archive] cpio -o [options] < name-list [> archive] cpio -p [options] dest-dir < name-list
Unless specifically stated otherwise, options are applicable in all operating modes. -0, --null Read filenames separated by NUL characters instead of newlines. This is necessary if any of the filenames being read might contain newlines. -6, --pwb When reading a binary format archive, assume it's the earlier one, from t...
The cpio command is traditionally used to copy file hierarchies in conjunction with the find(1) command. The first example here simply copies all files from src to dest: find src | cpio -pmud dest By carefully selecting options to the find(1) command and combining it with other standard utilities, it is possible to ex...
icu-config
icu-config simplifies the task of building and linking against ICU as compared to manually configuring user makefiles or equivalent. Because icu-config is an executable script, it also solves the problem of locating the ICU libraries and headers, by allowing the system PATH to locate it.
icu-config - output ICU build options
icu-config [ --bindir ] [ --cc ] [ --cflags ] [ --cppflags ] [ --cppflags-searchpath ] [ --cxx ] [ --cxxflags ] [ --detect-prefix ] [ --exec-prefix ] [ --exists ] [ --help, -?, --usage ] [ --icudata ] [ --icudata-install-dir ] [ --icudata-mode ] [ --icudatadir ] [ --invoke ] [ --invoke=prog ] [ --ldflags ] [ --ldflags-...
--bindir Prints the binary (executable) directory path. Normally equivalent to 'bin'. ICU user-executable applications and scripts are found here. --cc Print the C compiler used. Equivalent to the $(CC) Makefile variable. --cflags Print the C compiler flags. Equivalent to the $(CFLAGS) Makefile variable. Does NOT ...
icu-config can be used without a makefile. The command line below is sufficient for building a single-file c++ program against ICU. (For example, icu/source/samples/props/props.cpp) `icu-config --cxx --cxxflags --cppflags --ldflags` -o props props.cpp More commonly, icu-config will be called from within a makefile, and...
panel
Panels are curses(3X) windows with the added feature of depth. Panel functions allow the use of stacked windows and ensure the proper portions of each window and the curses stdscr window are hidden or displayed when panels are added, moved, modified or removed. The set of currently visible panels is the stack of pane...
panel - panel stack extension for curses
#include <panel.h> cc [flags] sourcefiles -lpanel -lncurses PANEL *new_panel(WINDOW *win) int bottom_panel(PANEL *pan) int top_panel(PANEL *pan) int show_panel(PANEL *pan) void update_panels(); int hide_panel(PANEL *pan) WINDOW *panel_window(const PANEL *pan) int replace_panel(PANEL *pan, WINDOW *window) int move_panel...
null
null
python3
Python is an interpreted, interactive, object-oriented programming language that combines remarkable power with very clear syntax. For an introduction to programming in Python, see the Python Tutorial. The Python Library Reference documents built-in and standard types, constants, functions and modules. Finally, the Py...
python - an interpreted, interactive, object-oriented programming language
python [ -B ] [ -b ] [ -d ] [ -E ] [ -h ] [ -i ] [ -I ] [ -m module-name ] [ -q ] [ -O ] [ -OO ] [ -P ] [ -s ] [ -S ] [ -u ] [ -v ] [ -V ] [ -W argument ] [ -x ] [ -X option ] [ -? ] [ --check-hash-based-pycs default | always | never ] [ --help ] [ --help-env ] [ --help-xoptions ] [ --help-all ] [ -c command | script ...
null
null
gencfu
gencfu reads confusable character definitions in the input file, which are plain text files containing confusable character definitions in the input format defined by Unicode UAX39 for the files confusables.txt and confusablesWholeScript.txt. This source (.txt) format is also accepted by ICU spoof detectors. The files...
gencfu - Generates Unicode Confusable data files
gencfu [ -h, -?, --help ] [ -V, --version ] [ -c, --copyright ] [ -v, --verbose ] [ -d, --destdir destination ] [ -i, --icudatadir directory ] -r, --rules rule-file -w, --wsrules whole-script-rule-file -o, --out output-file
-h, -?, --help Print help about usage and exit. -V, --version Print the version of gencfu and exit. -c, --copyright Embeds the standard ICU copyright into the output-file. -v, --verbose Display extra informative messages during execution. -d, --destdir destination Set the destination directory of the output-file to des...
null
arm64-apple-darwin20.0.0-bitcode_strip
bitcode_strip edits the input Mach-O file and with the -r option removes the bitcode segment, the segment named __LLVM and its section. With the -m option removes the bitcode segment but leaves a marker. Or with the -l option leaves only the bitcode segment in the Mach-O file an the (__TEXT,__info_plist) section. If ...
bitcode_strip - remove or leave the bitcode segment in a Mach-O file
bitcode_strip input [ -r | -m | -l ] -o output
null
null
wish8.6
null
null
null
null
null
spyder
null
null
null
null
null
grpc_python_plugin
null
null
null
null
null
png-fix-itxt
null
null
null
null
null
dyldinfo
null
null
null
null
null
gst-play-1.0
null
null
null
null
null
rst2latex.py
null
null
null
null
null
pybabel
null
null
null
null
null
xsltproc
xsltproc is a command line tool for applying XSLT stylesheets to XML documents. It is part of libxslt(3), the XSLT C library for GNOME. While it was developed as part of the GNOME project, it can operate independently of the GNOME desktop. xsltproc is invoked from the command line with the name of the stylesheet to be ...
xsltproc - command line XSLT processor
xsltproc [[-V | --version] [-v | --verbose] [{-o | --output} {FILE | DIRECTORY}] | --timing | --repeat | --debug | --novalid | --noout | --maxdepth VALUE | --maxvars VALUE | --maxparserdepth VALUE | --huge | --seed-rand VALUE | --html | --encoding ENCODING | --param PARAMNAME PARAMVALUE | --stringparam PARAMNAME PARA...
xsltproc accepts the following options (in alphabetical order): --catalogs Use the SGML catalog specified in SGML_CATALOG_FILES to resolve the location of external entities. By default, xsltproc looks for the catalog specified in XML_CATALOG_FILES. If that is not specified, it uses /etc/xml/catalog. --debug Output an X...
null
pep8
null
null
null
null
null
arm64-apple-darwin20.0.0-otool
null
null
null
null
null
pyrsa-priv2pub
null
null
null
null
null
ctf_insert
ctf_insert inserts CTF (Compact C Type Format) data into a mach_kernel binary, storing the data in a newly created (__CTF,__ctf) section. This section must not be present in the input file. ctf_insert(1) must be passed one -arch argument for each architecture in a universal file, or exactly one -arch for a thin file. ...
ctf_insert - insert Compact C Type Format data into a mach_kernel file
ctf_insert input [ -arch arch file ]... -o output
null
null
timezone-dump
null
null
null
null
null
mysql_install_db
Note mysql_install_db is deprecated as of MySQL 5.7.6 because its functionality has been integrated into mysqld, the MySQL server. To initialize a MySQL installation, invoke mysqld with the --initialize or --initialize-insecure option. For more information, see Section 2.10.1.1, “Initializing the Data Directory Manuall...
mysql_install_db - initialize MySQL data directory
mysql_install_db [options]
null
null
zstdless
zstdless runs less(1) on files or stdin, if no file argument is given, after decompressing them with zstdcat(1). SEE ALSO zstd(1) zstd 1.5.6 March 2024 ZSTDLESS(1)
zstdless - view zstandard-compressed files
zstdless [flags] [file ...]
null
null
iconv
The iconv program converts text from one encoding to another encoding. More precisely, it converts from the encoding given for the -f option to the encoding given for the -t option. Either of these encodings defaults to the encoding of the current locale. All the inputfiles are read and converted in turn; if no inputfi...
iconv - character set conversion
iconv [OPTION...] [-f encoding] [-t encoding] [inputfile ...] iconv -l
null
iconv -f ISO-8859-1 -t UTF-8 converts input from the old West-European encoding ISO-8859-1 to Unicode. iconv -f KOI8-R --byte-subst="<0x%x>" --unicode-subst="<U+%04X>" converts input from the old Russian encoding KOI8-R to the locale encoding, substituting an angle bracket notation with hexadecimal numbers for invalid ...
captoinfo
captoinfo looks in each given text file for termcap descriptions. For each one found, an equivalent terminfo description is written to standard output. Termcap tc capabilities are translated directly to terminfo use capabilities. If no file is given, then the environment variable TERMCAP is used for the filename or e...
captoinfo - convert a termcap description into a terminfo description
captoinfo [-vn width] [-V] [-1] [-w width] file . . .
null
null
opj_decompress
null
opj_decompress - This program reads in a jpeg2000 image and converts it to another image type. It is part of the OpenJPEG library. Valid input image extensions are .j2k, .jp2, .j2c, .jpt Valid output image extensions are .bmp, .pgm, .pgx, .png, .pnm, .ppm, .raw, .tga, .tif . For PNG resp. TIF it needs libpng resp. libt...
opj_decompress -i infile.j2k -o outfile.png opj_decompress -ImgDir images/ -OutFor bmp opj_decompress -h Print help message and exit See JPWL OPTIONS for special options
-i name (jpeg2000 input file name) -l n n is the maximum number of quality layers to decode. See LAYERS below) -o name (output file name with extension) -r n (n is the highest resolution level to be discarded. See REDUCTION below) -x name (use name as index file and fill it) -ImgDir directory_name (directory contai...
null
isort-identify-imports
null
null
null
null
null
tiffdump
tiffdump displays directory information from files created according to the Tag Image File Format, Revision 6.0. The header of each TIFF file (magic number, version, and first directory offset) is displayed, followed by the tag contents of each directory in the file. For each tag, the name, data type, count, and valu...
tiffdump - print verbatim information about TIFF files
tiffdump [ options ] name …
-h Force numeric data to be printed in hexadecimal rather than the default decimal. -m items Change the number of indirect data items that are printed. By default, this will be 24. -o offset Dump the contents of the IFD at the a particular file offset. The file offset may be specified using the usual C-style syntax...
null
jlpm
null
null
null
null
null
nghttpx
null
null
null
null
null
mailmail
null
null
null
null
null
ttx
ttx is a tool for manipulating TrueType and OpenType fonts. It can convert TrueType and OpenType fonts to and from an XML-based format called TTX. TTX files have a ‘.ttx’ extension. For each file argument it is given, ttx detects whether it is a ‘.ttf’, ‘.otf’ or ‘.ttx’ file and acts accordingly: if it is a ‘.ttf’ or...
ttx – tool for manipulating TrueType and OpenType fonts
ttx [option ...] file ...
null
In the following examples, all files are read from and written to the current directory. Additionally, the name given for the output file assumes in every case that it did not exist before ttx was invoked. Dump the TrueType font contained in FreeSans.ttf to FreeSans.ttx: ttx FreeSans.ttf Compile MyFont.ttx into a True...
pytest
null
null
null
null
null
dask
null
null
null
null
null
h5unjam
null
null
null
null
null
typer
null
null
null
null
null
inout
null
null
null
null
null
mtor
null
null
null
null
null
my_print_defaults
my_print_defaults displays the options that are present in option groups of option files. The output indicates what options are used by programs that read the specified option groups. For example, the mysqlcheck program reads the [mysqlcheck] and [client] option groups. To see what options are present in those groups i...
my_print_defaults - display options from option files
my_print_defaults [options] option_group ...
null
null
sip-install
null
null
null
null
null
pydoc
null
null
null
null
null
python
null
null
null
null
null
resolve_stack_dump
resolve_stack_dump resolves a numeric stack dump to symbols. Invoke resolve_stack_dump like this: shell> resolve_stack_dump [options] symbols_file [numeric_dump_file] The symbols file should include the output from the nm --numeric-sort mysqld command. The numeric dump file should contain a numeric stack track from mys...
resolve_stack_dump - resolve numeric stack trace dump to symbols
resolve_stack_dump [options] symbols_file [numeric_dump_file]
null
null
conda
null
null
null
null
null
flake8
null
null
null
null
null
unxz
xz is a general-purpose data compression tool with command line syntax similar to gzip(1) and bzip2(1). The native file format is the .xz format, but the legacy .lzma format used by LZMA Utils and raw compressed streams with no container format headers are also supported. In addition, decompression of the .lz format u...
xz, unxz, xzcat, lzma, unlzma, lzcat - Compress or decompress .xz and .lzma files
xz [option...] [file...] COMMAND ALIASES unxz is equivalent to xz --decompress. xzcat is equivalent to xz --decompress --stdout. lzma is equivalent to xz --format=lzma. unlzma is equivalent to xz --format=lzma --decompress. lzcat is equivalent to xz --format=lzma --decompress --stdout. When writing scripts that need to...
Integer suffixes and special values In most places where an integer argument is expected, an optional suffix is supported to easily indicate large integers. There must be no space between the integer and the suffix. KiB Multiply the integer by 1,024 (2^10). Ki, k, kB, K, and KB are accepted as synonyms for KiB. Mi...
Basics Compress the file foo into foo.xz using the default compression level (-6), and remove foo if compression is successful: xz foo Decompress bar.xz into bar and don't remove bar.xz even if decompression is successful: xz -dk bar.xz Create baz.tar.xz with the preset -4e (-4 --extreme), which is slower than the defa...
bunzip2
bzip2 compresses files using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding. Compression is generally considerably better than that achieved by more conventional LZ77/LZ78-based compressors, and approaches the performance of the PPM family of statistical compressors. The command-line ...
bzip2, bunzip2 - a block-sorting file compressor, v1.0.8 bzcat - decompresses files to stdout bzip2recover - recovers data from damaged bzip2 files
bzip2 [ -cdfkqstvzVL123456789 ] [ filenames ... ] bunzip2 [ -fkvsVL ] [ filenames ... ] bzcat [ -s ] [ filenames ... ] bzip2recover filename
-c --stdout Compress or decompress to standard output. -d --decompress Force decompression. bzip2, bunzip2 and bzcat are really the same program, and the decision about what actions to take is done on the basis of which name is used. This flag overrides that mechanism, and forces bzip2 to decompress. -z --compress The...
null
docx2txt
null
null
null
null
null
pythonw
null
null
null
null
null
lrelease
null
null
null
null
null
nghttpd
null
null
null
null
null
tiff2bw
null
null
null
null
null
krb5-config
krb5-config tells the application programmer what flags to use to compile and link programs against the installed Kerberos libraries.
krb5-config - tool for linking against MIT Kerberos libraries
krb5-config [--help | --all | --version | --vendor | --prefix | --exec-prefix | --defccname | --defktname | --defcktname | --cflags | --libs [libraries]]
--help prints a usage message. This is the default behavior when no options are specified. --all prints the version, vendor, prefix, and exec-prefix. --version prints the version number of the Kerberos installation. --vendor prints the name of the vendor of the Kerberos installation. --prefix prints the prefix for wh...
krb5-config is particularly useful for compiling against a Kerberos installation that was installed in a non-standard location. For example, a Kerberos installation that is installed in /opt/krb5/ but uses libraries in /usr/local/lib/ for text localization would produce the following output: shell% krb5-config --libs ...
mysqldumpslow
The MySQL slow query log contains information about queries that take a long time to execute (see Section 5.4.5, “The Slow Query Log”). mysqldumpslow parses MySQL slow query log files and summarizes their contents. Normally, mysqldumpslow groups queries that are similar except for the particular values of number and st...
mysqldumpslow - Summarize slow query log files
mysqldumpslow [options] [log_file ...]
null
null
grpc_objective_c_plugin
null
null
null
null
null
mysqld
mysqld, also known as MySQL Server, is a single multithreaded program that does most of the work in a MySQL installation. It does not spawn additional processes. MySQL Server manages access to the MySQL data directory that contains databases and tables. The data directory is also the default location for other informat...
mysqld - the MySQL server
mysqld [options]
null
null
freetype-config
freetype-config returns information needed for compiling and linking programs with the FreeType library, such as linker flags and compilation parameters. Alternatively, it can be used to query information about the FreeType library version installed on the system, such as the installation (directory path) prefix or the...
freetype-config - Get information about a libfreetype installation
freetype-config [options]
There are two types of options: output/display selection options, and path override options. Output selection options Only one of the output selection options should be given at each program invocation. --prefix Return the prefix value of the installed FreeType library (the default prefix will be `/usr' in most cases f...
null
pip3
null
null
null
null
null
colorcet
null
null
null
null
null
volint
null
null
null
null
null
libdeflate-gzip
null
null
null
null
null
mysqltest_embedded
null
null
null
null
null
ld
The ld command combines several object files and libraries, resolves references, and produces an output file. ld can produce a final linked image (executable, dylib, or bundle), or with the -r option, produce another object file. If the -o option is not used, the output file produced is named "a.out". Universal The l...
ld – linker
ld files... [options] [-o outputfile]
Options that control the kind of output -execute The default. Produce a mach-o main executable that has file type MH_EXECUTE. -dylib Produce a mach-o shared library that has file type MH_DYLIB. -bundle Produce a mach-o bundle that has file type MH_BUNDLE. -r Merges object files to produce another mach-o object f...
null
distro
null
null
null
null
null
pcre2test
If pcre2test is given two filename arguments, it reads from the first and writes to the second. If the first name is "-", input is taken from the standard input. If pcre2test is given only one argument, it reads from that file and writes to stdout. Otherwise, it reads from stdin and writes to stdout. When pcre2test is ...
pcre2test - a program for testing Perl-compatible regular expressions.
pcre2test [options] [input file [output file]] pcre2test is a test program for the PCRE2 regular expression libraries, but it can also be used for experimenting with regular expressions. This document describes the features of the test program; for details of the regular expressions themselves, see the pcre2pattern doc...
null
null
mysql_config
mysql_config provides you with useful information for compiling your MySQL client and connecting it to MySQL. It is a shell script, so it is available only on Unix and Unix-like systems. Note pkg-config can be used as an alternative to mysql_config for obtaining information such as compiler flags or link libraries requ...
mysql_config - display options for compiling clients
mysql_config options
null
null
gdbus-codegen
null
null
null
null
null
cjpeg
cjpeg compresses the named image file, or the standard input if no file is named, and produces a JPEG/JFIF file on the standard output. The currently supported input file formats are: PPM (PBMPLUS color format), PGM (PBMPLUS grayscale format), BMP, GIF, and Targa.
cjpeg - compress an image file to a JPEG file
cjpeg [ options ] [ filename ]
All switch names may be abbreviated; for example, -grayscale may be written -gray or -gr. Most of the "basic" switches can be abbreviated to as little as one letter. Upper and lower case are equivalent (thus -BMP is the same as -bmp). British spellings are also accepted (e.g., -greyscale), though for brevity these a...
This example compresses the PPM file foo.ppm with a quality factor of 60 and saves the output as foo.jpg: cjpeg -quality 60 foo.ppm > foo.jpg HINTS Color GIF files are not the ideal input for JPEG; JPEG is really intended for compressing full-color (24-bit) images. In particular, don't try to convert cartoons, line dr...
ipython
An interactive Python shell with automatic history (input and output), dynamic object introspection, easier configuration, command completion, access to the system shell, integration with numerical and scientific computing tools, web notebook, Qt console, and more. For more information on how to use IPython, see 'ipyth...
ipython - Tools for Interactive Computing in Python.
ipython [options] files... ipython subcommand [options]...
null
null
arm64-apple-darwin20.0.0-redo_prebinding
Redo_prebinding is used to redo the prebinding of an executable or dynamic library when one of the dependent dynamic libraries changes. The input file, executable or dynamic library, must have initially been prebound for this program to redo the prebinding. Also all depended libraries must have their prebinding up to ...
redo_prebinding - redo the prebinding of an executable or dynamic library
redo_prebinding [-c | -p | -d] [-i] [-z] [-u] [-r rootdir] [-e executable_path] [-seg_addr_table table_file_name] [-seg_addr_table_filename pathname] [-seg1addr address] [-o output_file] [-s] input_file
-c only check if the file needs to have it's prebinding redone and return status. A 0 exit means the file's prebinding is up to date, 1 means it needs to be redone and 2 means it could not be checked for reasons like a dependent library is missing (an error message is printed in these cases). -p check only for...
null
unidecode
null
null
null
null
null
h5stat
null
null
null
null
null
jpegtran
jpegtran performs various useful transformations of JPEG files. It can translate the coded representation from one variant of JPEG to another, for example from baseline JPEG to progressive JPEG or vice versa. It can also perform some rearrangements of the image data, for example turning an image from landscape to port...
jpegtran - lossless transformation of JPEG files
jpegtran [ options ] [ filename ]
All switch names may be abbreviated; for example, -optimize may be written -opt or -o. Upper and lower case are equivalent. British spellings are also accepted (e.g., -optimise), though for brevity these are not mentioned below. To specify the coded JPEG representation used in the output file, jpegtran accepts a subs...
This example converts a baseline JPEG file to progressive form: jpegtran -progressive foo.jpg > fooprog.jpg This example rotates an image 90 degrees clockwise, discarding any unrotatable edge pixels: jpegtran -rot 90 -trim foo.jpg > foo90.jpg ENVIRONMENT JPEGMEM If this environment variable is set, its value is the def...
arm64-apple-darwin20.0.0-checksyms
Checksyms preforms checks on a Mach-O production binary to see that it follows the proper conventions. If the binary follows the conventions, or is not a binary, checksyms(1) exits with zero status. A non-zero exit status indicates the binary does not follow the conventions for a production binary. The conventions inc...
checksyms - check Mach-O production binary for proper conventions
checksyms [-r] [-d] [-t] [-b] [-v] [-] [-arch arch_flag] [-dylib_table filename] [-seg_addr_table filename] [-seg_addr_table_filename pathname] file [...]
null
null
h5ls
null
null
null
null
null
transformers-cli
null
null
null
null
null
sshtunnel
null
null
null
null
null
qt.conf
null
null
null
null
null
xslt-config
null
null
null
null
null
pdf2txt.py
null
null
null
null
null
libpng16-config
null
null
null
null
null
nltk
null
null
null
null
null
imageio_remove_bin
null
null
null
null
null
xzegrep
xzgrep invokes grep(1) on uncompressed contents of files. The formats of the files are determined from the filename suffixes. Any file with a suffix supported by xz(1), gzip(1), bzip2(1), lzop(1), zstd(1), or lz4(1) will be decompressed; all other files are assumed to be uncompressed. If no files are specified or file...
xzgrep - search possibly-compressed files for patterns
xzgrep [option...] [pattern_list] [file...] xzegrep ... xzfgrep ... lzgrep ... lzegrep ... lzfgrep ...
null
null
qmltyperegistrar
null
null
null
null
null
gsettings
null
null
null
null
null
bzcmp
Bzcmp and bzdiff are used to invoke the cmp or the diff program on bzip2 compressed files. All options specified are passed directly to cmp or diff. If only 1 file is specified, then the files compared are file1 and an uncompressed file1.bz2. If two files are specified, then they are uncompressed if necessary and fed...
bzcmp, bzdiff - compare bzip2 compressed files
bzcmp [ cmp_options ] file1 [ file2 ] bzdiff [ diff_options ] file1 [ file2 ]
null
null
pngfix
null
null
null
null
null