# Requirements
It's require [**Vagrant**](https://developer.hashicorp.com/vagrant/downloads) and [**Virtualbox**](https://www.virtualbox.org/wiki/Downloads) installed on your system.
# Arguments
1. The directory to store The Vagrantfile
2. The vagrant box to use
3. The memory size to use
4. The cpus to use
5. All commands with **&&** to run in the virtual machine
> ps the order are important in this time
## Example
> Run all tests for my project from an archlinux virtual machine.
```shell
again "Again" "generic/arch" "4096" "4" "pacman -Syyu git rust base base-devel htop --noconfirm && git clone https://github.com/taishingi/zuu zuu && cd zuu && cargo build && cargo test"
```
> All files will be removed
