Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
tweak functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Oct 13, 2011
1 parent 0135768 commit dc29dcf
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions bin/compile
Expand Up @@ -6,13 +6,11 @@ indent() {


echo "-----> Found a hello.txt" echo "-----> Found a hello.txt"


# if hello.txt has contents, display them (indented to align) # if hello.txt is empty, abort the build
# otherwise error

if [ ! -s $1/hello.txt ]; then if [ ! -s $1/hello.txt ]; then
echo "hello.txt was empty" | indent echo "hello.txt was empty" | indent
exit 1 exit 1
else
echo "hello.txt is not empty, here are the contents" | indent
cat $1/hello.txt | indent
fi fi

# replace hello with goodbye in a new file
cat $1/hello.txt | sed -e "s/[Hh]ello/Goodbye/g" > $1/goodbye.txt

0 comments on commit dc29dcf

Please sign in to comment.