Thanks for the good project, which can help us make better/big-scale bash script.
When port the exist bash script to this new script, found require extra escape \, for example:
The command from bash script like:
grep -E 'NOT|PRODUCT-.*-build02.*\.out\.tgz '
If copy to hush, should be:
grep -E 'NOT|VMWARE-.*-build02.*\\.out\\.tgz '
Could we don't need this extra escape, which can help us copy the command between hush with bash easier?
Thanks for the good project, which can help us make better/big-scale bash script.
When port the exist bash script to this new script, found require extra escape
\, for example:The command from bash script like:
If copy to hush, should be:
Could we don't need this extra escape, which can help us copy the command between hush with bash easier?