Last active
September 22, 2019 19:08
-
-
Save sfdcale/00ee047555560ffb796d69ad0c9ec203 to your computer and use it in GitHub Desktop.
This command is to delete find and delete apex logs in system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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