JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
change layout, factor out css, use lesscss
[hexbog.git] / combine.bash
1 #!/bin/bash
2
3 cat "$1" | while read x
4 do
5         if [ "${x:0:4}" = 'cat ' ]
6         then
7                 cat "${x:4}" || exit $?
8         else
9                 echo "$x"
10         fi
11 done