Skip to content

Instantly share code, notes, and snippets.

@masto
Created June 28, 2013 18:47
Show Gist options
  • Save masto/5887045 to your computer and use it in GitHub Desktop.
Save masto/5887045 to your computer and use it in GitHub Desktop.
/tmp/test ❯ cat test.zsh
#!/bin/zsh
set -x
W='-iname *.txt'
find . ${=W}
set +x
/tmp/test ❯ zsh test.zsh
+test.zsh:5> W='-iname *.txt'
+test.zsh:6> find . -iname '*.txt'
./a/bar.txt
./foo.txt
+test.zsh:8> set +x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment