Operating System (os)

Output the auto-detected OS name

Description

Output the auto-detected OS name.

Usage

os -> <stdout>

os string -> <stdout>

Examples

Name current platform

» os
linux

Check platforms

Or if you want to check if the host is one of a number of platforms:

# When run on Linux or FreeBSD
» os linux freebsd
true

# When run on another platform, eg Windows or Darwin (macOS)
# (exit number would also be `1`)
» os linux freebsd
false

The intention is this allows simple tests in scripts:

if { os windows } then {
    # run some Windows specific code
}

POSIX

posix is also supported to check if Murex is running on a UNIX-like operating system.

All Murex targets apart from Windows and Plan 9 are considered POSIX.

# When run on Linux or macOS
» os posix
true

# When run on Windows or Plan 9
# (exit number would also be `1`)
» os posix
false

Please note that although Plan 9 shares similarities with POSIX, it is not POSIX-compliant. For that reason, os returns false with the posix parameter when run on Plan 9. If you want to include Plan 9 in the check then please write it as os posix plan9.

Synonyms

See Also


This document was generated from builtins/core/system/system_doc.yaml.

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Wed Jul 2 22:12:32 UTC 2025 against commit bb72b6fbb72b6fdd502f835172d7d06207ba4ec2c70886c.

Current version is 7.0.2107 (develop) which has been verified against tests cases.