-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdns-test-a-clean-up.cmd
More file actions
39 lines (31 loc) · 973 Bytes
/
Copy pathdns-test-a-clean-up.cmd
File metadata and controls
39 lines (31 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
cls
echo Clean up Logs
del /q dns*.txt
echo -----------------------------
echo DNS A List #1
cd
del /q "dns-a-records-list-1\.terraform.lock.hcl"
del /q "dns-a-records-list-1\terraform.tfstate.*"
rmdir /s /q "dns-a-records-list-1\.terraform"
echo DNS A List #2
cd
del /q "dns-a-records-list-2\.terraform.lock.hcl"
del /q "dns-a-records-list-2\terraform.tfstate.*"
rmdir /s /q "dns-a-records-list-2\.terraform"
echo DNS A List #3
cd
del /q "dns-a-records-list-3\.terraform.lock.hcl"
del /q "dns-a-records-list-3\terraform.tfstate.*"
rmdir /s /q "dns-a-records-list-3\.terraform"
echo DNS A List #4
cd
del /q "dns-a-records-list-4\.terraform.lock.hcl"
del /q "dns-a-records-list-4\terraform.tfstate.*"
rmdir /s /q "dns-a-records-list-4\.terraform"
echo DNS A Create
del /q "dns-a-records-create\.terraform.lock.hcl"
del /q "dns-a-records-create\terraform.tfstate.*"
rmdir /s /q "dns-a-records-create\.terraform"
echo -----------------------------
pause