I would like to download Fuchsia's source code.
I entered curl -s "https://fuchsia.googlesource.com/fuchsia/+/HEAD/scripts/bootstrap?format=TEXT" | base64 --decode | bash
that I found on fuchsia.dev.
I got ''base64'' is not recognized as an internal or external command, operable program or batch file.
I downloaded base64 tools without success.
What should I do to make this command work?
base64
does not exist as command or tool in Windows, right? You can use Certutil instead as described in https://mcmap.net/q/222876/-decoding-base64-in-batch – Aulos| base64 --decode | bash
part and instead redirect the output to a file, e.g.> fuchsia.b64
and then in a separate command call certutil with this fuchsia.b64 as input. – Aulos