#/bin/bash

mkdir rhel-9-x86_64 rhel-9-aarch64 rhel-8-ppc64le rhel-8-x86_64 rhel-8-aarch64

x=0
until [ $x -gt "12" ]; do
ln -s rhel-9-x86_64 rhel-7.$x-x86_64
ln -s rhel-9-aarch64 rhel-7.$x-aarch64
ln -s rhel-8-ppc64le rhel-8.$x-ppc64le
ln -s rhel-8-x86_64 rhel-8.$x-x86_64
ln -s rhel-8-aarch64 rhel-8.$x-aarch64
x=$((x+1))
done


