mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
12 lines
231 B
Bash
12 lines
231 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
ls Oracle_VM_VirtualBox_Extension*
|
||
|
|
||
|
if [ "$1" = "" ]; then
|
||
|
echo 'o Enter which one to install'
|
||
|
read instme
|
||
|
else
|
||
|
instme="$1"
|
||
|
fi
|
||
|
|
||
|
VBoxManage extpack install --replace "$instme" # [--accept-license=sha256] <tarball>
|