The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

osnames - List possible $^O ($OSNAME) values, with description

VERSION

This document describes version 0.101 of osnames (from Perl distribution App-osnames), released on 2023-02-24.

SYNOPSIS

osnames --help (or -h, -?)

osnames --version (or -v)

osnames [--config-path=path|-c|--no-config|-C] [--config-profile=profile|-P] [--description-contains=str] [(--description-in=str)+|--description-in-json=json] [--description-is=str] [--description-isnt=str] [--description-max=str] [--description-min=str] [--description-not-contains=str] [(--description-not-in=str)+|--description-not-in-json=json] [--description-xmax=str] [--description-xmin=str] [--description=str] [--detail|-l|--no-detail|--nodetail] [(--exclude-field=str)+|--exclude-fields-json=json] [(--field=str)+|--fields-json=json] [--format=name|--json] [--(no)naked-res] [--no-env] [--page-result[=program]|--view-result[=program]] [--query-boolean=str|--and|--or] [(--query=str)+|--queries-json=json|(-q=str)+] [(--sort=str)+|--sort-json=json] [--tags-contains=str] [(--tags-in=str)+|--tags-in-json=json] [--tags-is=str] [--tags-isnt=str] [--tags-max=str] [--tags-min=str] [--tags-not-contains=str] [(--tags-not-in=str)+|--tags-not-in-json=json] [--tags-xmax=str] [--tags-xmin=str] [--tags=str] [--value-contains=str] [(--value-in=str)+|--value-in-json=json] [--value-is=str] [--value-isnt=str] [--value-max=str] [--value-min=str] [--value-not-contains=str] [(--value-not-in=str)+|--value-not-in-json=json] [--value-xmax=str] [--value-xmin=str] [--value=str] [--with-field-names|--without-field-names] -- [query] ...

See examples in the "EXAMPLES" section.

DESCRIPTION

This list might be useful when coding, e.g. when you want to exclude or include certain OS (families) in your application/test.

OPTIONS

* marks required options.

Configuration options

--config-path=s, -c

Set path to configuration file.

Can actually be specified multiple times to instruct application to read from multiple configuration files (and merge them).

--config-profile=s, -P

Set configuration profile to use.

A single configuration file can contain profiles, i.e. alternative sets of values that can be selected. For example:

 [profile=dev]
 username=foo
 pass=beaver
 
 [profile=production]
 username=bar
 pass=honey

When you specify --config-profile=dev, username will be set to foo and password to beaver. When you specify --config-profile=production, username will be set to bar and password to honey.

--no-config, -C

Do not use any configuration file.

If you specify --no-config, the application will not read any configuration file.

Environment options

--no-env

Do not read environment for default options.

If you specify --no-env, the application wil not read any environment variable.

Field selection options

--detail, -l

Return array of full records instead of just ID fields.

By default, only the key (ID) field is returned per result entry.

--exclude-field=s@

Select fields to return.

Can be specified multiple times.

--exclude-fields-json=s

Select fields to return (JSON-encoded).

See --exclude-field.

--field=s@

Select fields to return.

Can be specified multiple times.

--fields-json=s

Select fields to return (JSON-encoded).

See --field.

--with-field-names

Return field names in each record (as hash/associative array).

When enabled, function will return each record as hash/associative array (field name => value pairs). Otherwise, function will return each record as list/array (field value, field value, ...).

Filtering for description options

--description-contains=s

Only return records where the 'description' field contains specified text.

--description-in-json=s

Only return records where the 'description' field is in the specified values (JSON-encoded).

See --description-in.

--description-in=s@

Only return records where the 'description' field is in the specified values.

Can be specified multiple times.

--description-is=s

Only return records where the 'description' field equals specified value.

--description-isnt=s

Only return records where the 'description' field does not equal specified value.

--description-max=s

Only return records where the 'description' field is less than or equal to specified value.

--description-min=s

Only return records where the 'description' field is greater than or equal to specified value.

--description-not-contains=s

Only return records where the 'description' field does not contain specified text.

--description-not-in-json=s

Only return records where the 'description' field is not in the specified values (JSON-encoded).

See --description-not-in.

--description-not-in=s@

Only return records where the 'description' field is not in the specified values.

Can be specified multiple times.

--description-xmax=s

Only return records where the 'description' field is less than specified value.

--description-xmin=s

Only return records where the 'description' field is greater than specified value.

--description=s

Only return records where the 'description' field equals specified value.

Filtering for tags options

--tags-contains=s

Only return records where the 'tags' field contains specified text.

--tags-in-json=s

Only return records where the 'tags' field is in the specified values (JSON-encoded).

See --tags-in.

--tags-in=s@

Only return records where the 'tags' field is in the specified values.

Can be specified multiple times.

--tags-is=s

Only return records where the 'tags' field equals specified value.

--tags-isnt=s

Only return records where the 'tags' field does not equal specified value.

--tags-max=s

Only return records where the 'tags' field is less than or equal to specified value.

--tags-min=s

Only return records where the 'tags' field is greater than or equal to specified value.

--tags-not-contains=s

Only return records where the 'tags' field does not contain specified text.

--tags-not-in-json=s

Only return records where the 'tags' field is not in the specified values (JSON-encoded).

See --tags-not-in.

--tags-not-in=s@

Only return records where the 'tags' field is not in the specified values.

Can be specified multiple times.

--tags-xmax=s

Only return records where the 'tags' field is less than specified value.

--tags-xmin=s

Only return records where the 'tags' field is greater than specified value.

--tags=s

Only return records where the 'tags' field equals specified value.

Filtering for value options

--value-contains=s

Only return records where the 'value' field contains specified text.

--value-in-json=s

Only return records where the 'value' field is in the specified values (JSON-encoded).

See --value-in.

--value-in=s@

Only return records where the 'value' field is in the specified values.

Can be specified multiple times.

--value-is=s

Only return records where the 'value' field equals specified value.

--value-isnt=s

Only return records where the 'value' field does not equal specified value.

--value-max=s

Only return records where the 'value' field is less than or equal to specified value.

--value-min=s

Only return records where the 'value' field is greater than or equal to specified value.

--value-not-contains=s

Only return records where the 'value' field does not contain specified text.

--value-not-in-json=s

Only return records where the 'value' field is not in the specified values (JSON-encoded).

See --value-not-in.

--value-not-in=s@

Only return records where the 'value' field is not in the specified values.

Can be specified multiple times.

--value-xmax=s

Only return records where the 'value' field is less than specified value.

--value-xmin=s

Only return records where the 'value' field is greater than specified value.

--value=s

Only return records where the 'value' field equals specified value.

Filtering options

--and

Shortcut for --query-boolean=and.

See --query-boolean.

--or

Shortcut for --query-boolean=or.

See --query-boolean.

--queries-json=s, -q

Search (JSON-encoded).

See --query.

Can also be specified as the 1st command-line argument and onwards.

--query-boolean=s

Whether records must match all search queries ('and') or just one ('or').

Default value:

 "and"

Valid values:

 ["and","or"]

If set to and, all queries must match; if set to or, only one query should match. See the queries option for more details on searching.

--query=s@

Search.

This will search all searchable fields with one or more specified queries. Each query can be in the form of -FOO (dash prefix notation) to require that the fields do not contain specified string, or /FOO/ to use regular expression. All queries must match if the query_boolean option is set to and; only one query should match if the query_boolean option is set to or.

Can also be specified as the 1st command-line argument and onwards.

Can be specified multiple times.

Ordering options

--sort-json=s

Order records according to certain field(s) (JSON-encoded).

See --sort.

--sort=s@

Order records according to certain field(s).

A list of field names separated by comma. Each field can be prefixed with '-' to specify descending order instead of the default ascending.

Can be specified multiple times.

Output options

--format=s

Choose output format, e.g. json, text.

Default value:

 undef

Output can be displayed in multiple formats, and a suitable default format is chosen depending on the application and/or whether output destination is interactive terminal (i.e. whether output is piped). This option specifically chooses an output format.

--json

Set output format to json.

--naked-res

When outputing as JSON, strip result envelope.

Default value:

 0

By default, when outputing as JSON, the full enveloped result is returned, e.g.:

 [200,"OK",[1,2,3],{"func.extra"=>4}]

The reason is so you can get the status (1st element), status message (2nd element) as well as result metadata/extra result (4th element) instead of just the result (3rd element). However, sometimes you want just the result, e.g. when you want to pipe the result for more post-processing. In this case you can use --naked-res so you just get:

 [1,2,3]
--page-result

Filter output through a pager.

This option will pipe the output to a specified pager program. If pager program is not specified, a suitable default e.g. less is chosen.

--view-result

View output using a viewer.

This option will first save the output to a temporary file, then open a viewer program to view the temporary file. If a viewer program is not chosen, a suitable default, e.g. the browser, is chosen.

Other options

--help, -h, -?

Display help message and exit.

--version, -v

Display program's version and exit.

COMPLETION

This script has shell tab completion capability with support for several shells.

bash

To activate bash completion for this script, put:

 complete -C osnames osnames

in your bash startup (e.g. ~/.bashrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.

It is recommended, however, that you install modules using cpanm-shcompgen which can activate shell completion for scripts immediately.

tcsh

To activate tcsh completion for this script, put:

 complete osnames 'p/*/`osnames`/'

in your tcsh startup (e.g. ~/.tcshrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.

It is also recommended to install shcompgen (see above).

other shells

For fish and zsh, install shcompgen as described above.

CONFIGURATION FILE

This script can read configuration files. Configuration files are in the format of IOD, which is basically INI with some extra features.

By default, these names are searched for configuration filenames (can be changed using --config-path): /home/u1/.config/osnames.conf, /home/u1/osnames.conf, or /etc/osnames.conf.

All found files will be read and merged.

To disable searching for configuration files, pass --no-config.

You can put multiple profiles in a single file by using section names like [profile=SOMENAME] or [SOMESECTION profile=SOMENAME]. Those sections will only be read if you specify the matching --config-profile SOMENAME.

You can also put configuration for multiple programs inside a single file, and use filter program=NAME in section names, e.g. [program=NAME ...] or [SOMESECTION program=NAME]. The section will then only be used when the reading program matches.

You can also filter a section by environment variable using the filter env=CONDITION in section names. For example if you only want a section to be read if a certain environment variable is true: [env=SOMEVAR ...] or [SOMESECTION env=SOMEVAR ...]. If you only want a section to be read when the value of an environment variable equals some string: [env=HOSTNAME=blink ...] or [SOMESECTION env=HOSTNAME=blink ...]. If you only want a section to be read when the value of an environment variable does not equal some string: [env=HOSTNAME!=blink ...] or [SOMESECTION env=HOSTNAME!=blink ...]. If you only want a section to be read when the value of an environment variable includes some string: [env=HOSTNAME*=server ...] or [SOMESECTION env=HOSTNAME*=server ...]. If you only want a section to be read when the value of an environment variable does not include some string: [env=HOSTNAME!*=server ...] or [SOMESECTION env=HOSTNAME!*=server ...]. Note that currently due to simplistic parsing, there must not be any whitespace in the value being compared because it marks the beginning of a new section filter or section name.

To load and configure plugins, you can use either the -plugins parameter (e.g. -plugins=DumpArgs or -plugins=DumpArgs@before_validate_args), or use the [plugin=NAME ...] sections, for example:

 [plugin=DumpArgs]
 -event=before_validate_args
 -prio=99
 
 [plugin=Foo]
 -event=after_validate_args
 arg1=val1
 arg2=val2

 

which is equivalent to setting -plugins=-DumpArgs@before_validate_args@99,-Foo@after_validate_args,arg1,val1,arg2,val2.

List of available configuration parameters:

 description (see --description)
 description.contains (see --description-contains)
 description.in (see --description-in)
 description.is (see --description-is)
 description.isnt (see --description-isnt)
 description.max (see --description-max)
 description.min (see --description-min)
 description.not_contains (see --description-not-contains)
 description.not_in (see --description-not-in)
 description.xmax (see --description-xmax)
 description.xmin (see --description-xmin)
 detail (see --detail)
 exclude_fields (see --exclude-field)
 fields (see --field)
 format (see --format)
 naked_res (see --naked-res)
 queries (see --query)
 query_boolean (see --query-boolean)
 sort (see --sort)
 tags (see --tags)
 tags.contains (see --tags-contains)
 tags.in (see --tags-in)
 tags.is (see --tags-is)
 tags.isnt (see --tags-isnt)
 tags.max (see --tags-max)
 tags.min (see --tags-min)
 tags.not_contains (see --tags-not-contains)
 tags.not_in (see --tags-not-in)
 tags.xmax (see --tags-xmax)
 tags.xmin (see --tags-xmin)
 value (see --value)
 value.contains (see --value-contains)
 value.in (see --value-in)
 value.is (see --value-is)
 value.isnt (see --value-isnt)
 value.max (see --value-max)
 value.min (see --value-min)
 value.not_contains (see --value-not-contains)
 value.not_in (see --value-not-in)
 value.xmax (see --value-xmax)
 value.xmin (see --value-xmin)
 with_field_names (see --with-field-names)

ENVIRONMENT

OSNAMES_OPT

String. Specify additional command-line options.

FILES

/home/u1/.config/osnames.conf

/home/u1/osnames.conf

/etc/osnames.conf

EXAMPLES

 % osnames ux
 dgux
 gnu
 hpux
 linux

List Unices

 % osnames --tags unix -l
 

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/App-osnames.

SOURCE

Source repository is at https://github.com/perlancar/perl-App-osnames.

AUTHOR

perlancar <perlancar@cpan.org>

CONTRIBUTING

To contribute, you can send patches by email/via RT, or send pull requests on GitHub.

Most of the time, you don't need to build the distribution yourself. You can simply modify the code, then test via:

 % prove -l

If you want to build the distribution (e.g. to try to install it locally on your system), you can install Dist::Zilla, Dist::Zilla::PluginBundle::Author::PERLANCAR, Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond that are considered a bug and can be reported to me.

COPYRIGHT AND LICENSE

This software is copyright (c) 2023, 2015, 2014, 2013 by perlancar <perlancar@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-osnames

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.