Last active
March 24, 2022 21:36
-
-
Save Micrified/1dcb81850086a287f5d47f2d13db07b4 to your computer and use it in GitHub Desktop.
Bundle example script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $* | |
do | |
echo "echo $i 1>&2" | |
echo "cat >$i << 'END-MARKER-$i'" | |
cat $i | |
echo "END-MARKER-$i" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment