daniel-sc / bash-shell-to-bat-converter

Converter for bash shell scripts to windows batch files.
https://daniel-sc.github.io/bash-shell-to-bat-converter
MIT License
229 stars 45 forks source link

Support inline expressions #56

Closed martin-braun closed 1 year ago

martin-braun commented 2 years ago
echo $(echo "test")

converts to:

@echo off

echo "%undefined%"

Even worse:

echo "$(echo "$(echo "test")")"

throws:

parse error: SyntaxError: Unclosed $(
daniel-sc commented 1 year ago

duplicate of #51