Changeset 34cabf6 for extras


Ignore:
Timestamp:
04/14/2006 04:46:50 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
9b5d069
Parents:
9619fd6
Message:

Creating iteration-N.log files to keep clean Makefile output.

Location:
extras
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extras/do_copy_files

    r9619fd6 r34cabf6  
    1818TMP_FILE=/tmp/prunelist
    1919
     20echo -en "\nCopying system files to $3 ..."
     21
    2022# Create a file that we can pass to tar as an "exclude list".
    2123# There might be an easier way to achieve tar exclusions? Strip
     
    3133# Clear out the temporary file
    3234rm -f ${TMP_FILE}
     35
     36echo "done."
  • extras/do_ica_prep

    r9619fd6 r34cabf6  
    2727if [ ! -f "$CMP_DIR/icaprep" ]; then
    2828
    29   echo -n "Removing symbolic links in ${CMP_DIR}... "
     29  echo -en "\nRemoving symbolic links in ${CMP_DIR}... "
    3030  find $CMP_DIR -type l | xargs rm -f
    3131  echo "done."
     
    7070  # We're all done
    7171  echo -en "\nSuccess: ICA preparation for "
    72   echo -e "${CMP_DIR} complete.\n"
     72  echo -e "${CMP_DIR} complete."
    7373  touch $CMP_DIR/icaprep
    7474else
  • extras/do_ica_work

    r9619fd6 r34cabf6  
    2828REPORT="${3}/REPORT.${1}V${2}"
    2929
     30echo -en "\nGenerating ICA analysis report $1 versus $2 ..."
     31
    3032mkdir -p $3
    3133
     
    5052
    5153rm -f $RAWDIFF
     54
     55echo "done."
  • extras/filelist

    r9619fd6 r34cabf6  
    4141fi
    4242
    43 echo "Will create file list in $OUTFILE"
     43echo -en "\nCreating file list for farce amalysis in $OUTFILE ..."
    4444if [ -f $OUTFILE ]; then
    4545  echo "refusing to overwrite $OUTFILE"
     
    5656find $LOC -xdev -xtype f | sed "s%^${LOC}%/%" | sort >$OUTFILE
    5757
     58echo -e "done.\n"
     59
    5860exit
Note: See TracChangeset for help on using the changeset viewer.