Skip to content

Instantly share code, notes, and snippets.

@kazu634
Created November 19, 2011 07:07
Show Gist options
  • Save kazu634/1378582 to your computer and use it in GitHub Desktop.
Save kazu634/1378582 to your computer and use it in GitHub Desktop.
#!/bin/bash
for FILE in `find . -name "*" -maxdepth 1`
do
case $FILE in
*.scm) echo $FILE ;;
esac
done
for FILE in `find . -name "*" -maxdepth 1`
do
echo $FILE
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment