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

i need && #33

Closed dataf3l closed 3 years ago

dataf3l commented 3 years ago

can I get && please?

dataf3l commented 3 years ago

@daniel-sc still cannot do it on the site, maybe site needs an update?

daniel-sc commented 3 years ago

Can you try again?

dataf3l commented 3 years ago

when I enter:

!/bin/bash

echo 1 && echo 2

it produces:

@echo off

echo 1 && echo 2

which works as expected.

Thank you for teaching me, you are contributing to society. This is why I love open-source. Please never stop being awesome.