We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make export j="" for i in b a s e 6 4 t e s t; do j="$j$i" echo -n $j | /usr/bin/base64 | ./bin/base64 -d echo done
Output:
b ba decoding error base base6 decoding error base64t base64te decoding error base64test
The text was updated successfully, but these errors were encountered:
That's because /usr/bin/base64 prints a trailing newline. Try this instead:
/usr/bin/base64
#!/bin/sh export j="" for i in b a s e 6 4 t e s t; do j="$j$i" echo -n $j | /usr/bin/base64 | tr -d "\n" | bin/base64 -d echo done
Or /usr/bin/base64 -w0.
/usr/bin/base64 -w0
Sorry, something went wrong.
base64 -d
No branches or pull requests
Output:
The text was updated successfully, but these errors were encountered: