while [ “find . -type f -name '*.tar.xz' | wc -l“ -gt 0 ]; do find -type f -name “*.tar.xz” -exec tar xf ‘{}’ \; -exec rm — ‘{}’ \;; done;