Added scripts...

This commit is contained in:
2021-02-20 20:33:40 -06:00
parent 789cfefacd
commit 06ca6a91ae
25 changed files with 14958 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
# . CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
SCRIPTPATH="$( cd "$(dirname "")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
VBoxManage internalcommands createrawvmdk \
-filename "Win7HDD.vmdk" -rawdisk /dev/sdb \
-partitions 1,2
}
main $@;