Skip to content

Instantly share code, notes, and snippets.

@us10096698
Created November 1, 2013 08:41
Show Gist options
  • Save us10096698/7262546 to your computer and use it in GitHub Desktop.
Save us10096698/7262546 to your computer and use it in GitHub Desktop.
Combine Files which specified with $1
#! /bin/sh
for fname in `find $1`
do
echo '*****'$fname'*****'
cat $fname
done
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment