Skip to content

Instantly share code, notes, and snippets.

@jonasfroeller
Created June 28, 2023 16:32
Show Gist options
  • Save jonasfroeller/b55fc2aeed7dfda94374a2b000a0d16b to your computer and use it in GitHub Desktop.
Save jonasfroeller/b55fc2aeed7dfda94374a2b000a0d16b to your computer and use it in GitHub Desktop.
deletes temporary data on the system (Linux)
#!/bin/bash
# changing to temp dir
cd /tmp
# deleting temporary files and directories
rm -rf *
read -p "Press Enter to exit..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment