commit f2c319b22c2cc0c7b1a3334221818ddc9ebf47eb Author: 1ndev <1ndevelopment@protonmail.com> Date: Tue Mar 11 21:00:32 2025 -0700 init commit diff --git a/charmon.sh b/charmon.sh new file mode 100755 index 0000000..e365d0f --- /dev/null +++ b/charmon.sh @@ -0,0 +1,35 @@ +#!/bin/bash +echo " + ) ( * ) ) + ( ( /( ( )\ ) ( ( ( /( ( /( + )\ )\()) )\ (()/( )\))( )\()) )\()) + (((_) ((_)\((((_)( /(_))((_)()\ ((_)\ ((_)\ + )\___ _((_))\ _ )\ (_)) (_()((_) ((_) _((_) +((/ __|| || |(_)_\(_)| _ \ | \/ | / _ \ | \| | + | (__ | __ | / _ \ | / | |\/| || (_) || . | + \___||_||_|/_/ \_\ |_|_\ |_| |_| \___/ |_|\_| + Toasty Developed by: 1ndev + +" +imagetype=("Execute" "exit") +PS3='Specify option: ' +select imgtype in "${imagetype[@]}"; do + case $imgtype in + "Execute") + echo "converting $filename to ${filename%.*}.img" + qemu-img convert -f vmdk -O raw $filename ${filename%.*}.img + echo "File Conversion Successful" + break + ;; + "exit") + echo "User requested exit" + exit + ;; + esac +done + +echo "Select file type:" +read filename +result=$(echo "$filename") + +echo "you have selected $result"