Skip to content

Instantly share code, notes, and snippets.

@allthingscode
Created January 28, 2011 21:56
Show Gist options
  • Save allthingscode/801072 to your computer and use it in GitHub Desktop.
Save allthingscode/801072 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
for item in `find ./ -type f | sed -e 's/ /[SPACE]/g'` ; do
# unescape spaces
file_path=`echo $item | sed -e 's/\[SPACE\]/ /g'`
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment