hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

README (520B)


      1 The wordexp module implements word expansion using shell semantics, similar to
      2 POSIX wordexp(3). Word expansion is performed with the platform-specific system
      3 shell, which is generally POSIX sh(1) compatible on Unix-like systems.
      4 
      5 When used with a POSIX shell, the IFS variable is unconditionally unset in the
      6 environment, causing the shell to assume the default value of " \t\n".
      7 
      8 Note that, by design, this module runs arbitrary shell commands from
      9 user-supplied inputs. It must only be used in a trusted environment.