Skip to content

Instantly share code, notes, and snippets.

@ikr
Created March 1, 2011 09:58
Show Gist options
  • Save ikr/848920 to your computer and use it in GitHub Desktop.
Save ikr/848920 to your computer and use it in GitHub Desktop.
null all files
#!/bin/sh
for f in $(find -type f .)
do
echo "" > $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment