github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/lang/expressions/noglob/autoglob_doc.yaml (about) 1 - DocumentID: autoglob 2 Title: >+ 3 `@g` (autoglob) 4 CategoryID: commands 5 Summary: >- 6 Command prefix to expand globbing (deprecated) 7 Description: |- 8 **This feature is now deprecated and only applies to murex version 2:** 9 10 By default Murex does not expand globbing (`*` and `?` wildcards) instead 11 encouraging the use of `g` (and similar) inside a subshell. While the aim of 12 this is to promote correctness, it can be a little annoying while working in 13 the interactive shell. For this reason you can prefix any command with `@g` to 14 enable Bash-like globbing. 15 Usage: |- 16 ``` 17 @g command ... 18 ``` 19 Examples: |- 20 ``` 21 @g echo * 22 ``` 23 Detail: |- 24 As of Murex `2.9` and above it is possible to enable automatic globbing in 25 the interactive shell without having to prefix the command with `@g` by 26 enabling the following `config` option: 27 28 ``` 29 config: set shell auto-glob true 30 ``` 31 32 It is enabled by default on from version 3.x onwards (and renamed to 33 `expand-glob`) 34 Synonyms: 35 Related: 36 - g 37 - rx 38 - f 39 - config 40 - profile 41 42