Created
June 27, 2024 04:13
-
-
Save prakashsvmx/ab44e5fe5a85d05383912d59631e4269 to your computer and use it in GitHub Desktop.
n-obj-n-versions.sh
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 | |
for i in {1..3}; do | |
mc cp 1.txt local22/test-bucket/$i.txt | |
for j in {1..3}; do | |
mc cp 1.txt local22/test-bucket/${i}.txt | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment