Skip to content

Instantly share code, notes, and snippets.

@thomashartm
Created January 19, 2015 13:23
Show Gist options
  • Save thomashartm/7e00d092f1bad66a4dd0 to your computer and use it in GitHub Desktop.
Save thomashartm/7e00d092f1bad66a4dd0 to your computer and use it in GitHub Desktop.
Removes .vlt files from the current directory and all subdirectories
#!/bin/bash
find ./ -name ".vlt" | xargs rm -Rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment