initial commit

This commit is contained in:
2021-03-12 13:24:59 -05:00
parent accffd56ae
commit b9b98f9e2f
7 changed files with 373 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
# Locates VM images on a users machine with the below file extensions and lists them out with thier size.
find /Users/ -type f \( -name "*.hds" -o -name "*.vmdk" -o -name "*.vdi" -o -name "*.vhd" \) -exec du -sh {} \; > /tmp/vminfo
echo "<result>"
cat /tmp/vminfo
echo "</result>"
exit 0