Coderwall
Ruby
Python
JavaScript
Front-End
Tools
iOS
More
Tips
Ruby
Python
JavaScript
Front-End
Tools
iOS
PHP
Android
.NET
Java
Jobs
Jobs
Sign In or Up
Joined May 2013
·
aprades
aprades
a
·
·
·
0 Protips
1 Comments
Posted to
Delete all files (including hidden ones) with just one rm
over 1 year ago
What about this one?
find ./ -mindepth 1 -maxdepth 1 -exec rm -rf {} \;
Achievements
19 Karma
0 Total ProTip Views
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Forked
Have a project valued enough to be forked by someone else
Interests & Skills
Open Source
Arduino
Python
What about this one?
find ./ -mindepth 1 -maxdepth 1 -exec rm -rf {} \;