tasty revision to load feisty for full use
[feisty_meow.git] / scripts / buildor / buildor_make_code_writable.sh
1 #!/bin/bash
2
3 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
4 source "$FEISTY_MEOW_SCRIPTS/buildor/seek_all_source.sh"
5
6 function strip_file {
7   file=$1
8   perl $FEISTY_MEOW_SCRIPTS/strip_cr.pl $file
9 }
10
11 #echo tempfile is $SOURCES_FOUND_LIST
12
13 # this block has io redirected from the file to std in.
14 while true; do
15   read line_found 
16   if [ $? != 0 ]; then break; fi
17   chmod u+w "$line_found"
18 done <$SOURCES_FOUND_LIST
19
20 rm $SOURCES_FOUND_LIST  # clean up.
21