-
-
Save sgeto/d36ae6e3d62c817375a9bd7e60355bcf to your computer and use it in GitHub Desktop.
Shell script to run VMware VM in headless mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Modified version of: | |
# http://tech.namshi.com/blog/2015/08/02/vmware-fusion-headless/ | |
# See above for adding `vmrun` to your path. | |
if [ -z "$vmFile" -a -f *.vmx ] | |
then | |
vmFile=`ls *.vmx | head -n 1` | |
echo "vmFile set to $vmFile." | |
fi | |
if [ -z "$vmFile" ] | |
then | |
echo "Please set your 'vmFile' environment variable to point to your vm's .vmx file." | |
exit 1 | |
fi | |
case "$1" in | |
start) | |
vmrun start "$vmFile" nogui | |
;; | |
stop) | |
vmrun stop "$vmFile" nogui | |
;; | |
suspend) | |
vmrun suspend "$vmFile" nogui | |
;; | |
pause) | |
vmrun pause "$vmFile" nogui | |
;; | |
unpause) | |
vmrun unpause "$vmFile" nogui | |
;; | |
reset) | |
vmrun reset "$vmFile" nogui | |
;; | |
status) | |
vmrun list | |
;; | |
*) | |
echo "Usage: possible options are: start | stop | suspend | pause | unpause | reset | status" | |
exit 1 | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment