Changeset 26d25e8 for common


Ignore:
Timestamp:
05/03/2006 04:17:38 AM (18 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Branches:
1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
261eea6
Parents:
296ae69
Message:

Fix some typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/create-sbu_du-report.sh

    r296ae69 r26d25e8  
    1515  echo -e "\nLooks like $LOGSDIR isn't a jhalfs logs directory.\n" && exit
    1616
    17 # If this script is run manually, the book version may be unknow
     17# If this script is run manually, the book version may be unknown
    1818[[ -z "$VERSION" ]] && VERSION=unknown
    1919
     
    7575
    7676#Start disk usage calculation
    77   # Disk usage before unpack the package
     77  # Disk usage before unpacking the package
    7878  DU1=`grep "^KB: " $log | head -n1 | cut -f1 | sed -e 's/KB: //'`
    7979  DU1MB=`echo "scale=2; $DU1 / 1024" | bc`
    80   # Disk usage before delete sources and build dirs
     80  # Disk usage before deleting the source and build dirs
    8181  DU2=`grep "^KB: " $log | tail -n1 | cut -f1 | sed -e 's/KB: //'`
    8282  DU2MB=`echo "scale=2; $DU2 / 1024" | bc`
     
    109109
    110110  # Dump disk usage values
    111   echo -e "\nDisk usage before unpack the package:\t\t\t$DU1 KB or $DU1MB MB" >> "$REPORT"
    112   echo -e "Disk usage before delete sources and build dirs:\t$DU2 KB or $DU2MB MB" >> "$REPORT"
     111  echo -e "\nDisk usage before unpacking the package:\t\t\t$DU1 KB or $DU1MB MB" >> "$REPORT"
     112  echo -e "Disk usage before deleting the source and build dirs:\t$DU2 KB or $DU2MB MB" >> "$REPORT"
    113113  echo -e "Required space to build the package:\t\t\t$REQUIRED1 KB or $REQUIRED2 MB\n" >> "$REPORT"
    114114
Note: See TracChangeset for help on using the changeset viewer.