Created
November 19, 2021 15:17
-
-
Save m3y54m/1230025aeb782f93c8a4a62a15988287 to your computer and use it in GitHub Desktop.
Decode Multiple Files From Base64 (Bash Script)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p decode | |
for f in *.txt | |
do | |
base64 --decode "$f" > "decode/$f" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment