我正在尝试编写一个 bash 脚本,该脚本允许我在设置 VM 的文件夹中创建一个 Virtualbox VDI 存储文件。这是我到目前为止的代码:
vm="Windows 7"
vm_type=Windows7
VBoxManage createvm --name "${vm}" --ostype "${vm_type}" --register
VBoxManage modifyvm "${vm}" --memory 2048 --acpi on --boot1 dvd
VBoxManage modifyvm "${vm}" --nic1 bridged --bridgeadapter1 eth0
vm_dir = `VBoxManage showvminfo "${vm}" | grep "Config file"`
我正在尝试使用配置文件字符串来检索已安装 VM 的目录,将字符串修剪到仅 VM 目录并在那里创建硬盘文件。我怎么做?