Skip to content

Instantly share code, notes, and snippets.

@juliarose
Created March 10, 2023 12:28
Show Gist options
  • Save juliarose/d9134b4222a71581c3d37acd97239d06 to your computer and use it in GitHub Desktop.
Save juliarose/d9134b4222a71581c3d37acd97239d06 to your computer and use it in GitHub Desktop.
Deletes all files matching ".log" in current directory
#!/bin/sh
find . -type f -name "*.log*" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment