5 lines
98 B
Bash
Executable File
5 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
USER_DIR=./customers/$1
|
|
(cd $USER_DIR && vagrant destroy -f)
|
|
rm -rf $USER_DIR
|