Skip to content

Instantly share code, notes, and snippets.

@sfdcale
Last active September 22, 2019 19:08
Show Gist options
  • Select an option

  • Save sfdcale/00ee047555560ffb796d69ad0c9ec203 to your computer and use it in GitHub Desktop.

Select an option

Save sfdcale/00ee047555560ffb796d69ad0c9ec203 to your computer and use it in GitHub Desktop.
This command is to delete find and delete apex logs in system
#Deletes apex logs.
sudo find / -type f -name '07L*.log' -exec rm -i {} \;
sudo find / -type f -name 'success*.csv' -exec rm -v {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment