~ Home Sigil

Home directory path variable

Description

The tilde token is used as a lazy reference to the users home directory.

Examples

Current user

Assuming current username is “bob”:

» out ~
/home/bob

Alternative user

Assuming “joe” is a valid user on local system:

» out ~joe
/home/joe

Unhappy path

If username does not exist, ~ will default to the root path.

Assuming “foobar” isn’t a valid local user:

» out ~foobar
/

Detail

Tilde can be expanded inside double quotes, brace quotes as well as used naked. But it cannot be expanded inside single quotes.

» out ~
/home/bob

» out '~'
~

» out "~"
/home/bob

» out %(~)
/home/bob

See Also


This document was generated from gen/parser/variables_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 Thu Aug 15 14:38:34 UTC 2024 against commit 50ed9d650ed9d6df391240d3c2c02e623636e508dfcdad1.

Current version is 6.2.4000 which has been verified against tests cases.