-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run: fix escaping params, disable shell features and prevent ahk args…
… from spanning multiple parameters args are now split into params *before* ahk variable substitution. for example, ```ahk a = b" "c" > d " Run, cmd "%a%" ``` would previously excute `cmd "b" "c" > d ""`. Now, it's `cmd "b\" \"c\" > d \""`, so everything is treated literally and shell features like `>` or `&` aren't available anymore. If you need these features, you need to invoke `bash -c '%your_ahk_variable_containing_bash_stuff%'` manually.
- Loading branch information
Showing
2 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters