Ignore:
Timestamp:
Sep 17, 2015 8:12:24 AM (9 years ago)
Author:
raasch
Message:

bugfix in calculation of vertical profile of energy production by turbulent transport of TKE
bugfix for output of configuration settings (mbuild)
output of login init command (mbuild)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/mbuild

    r1649 r1652  
    2222# Current revisions:
    2323# ------------------
    24 #
     24# bug in terminal output of configuration settings removed,
     25# output of login init commands
    2526#
    2627# Former revisions:
     
    995996    then
    996997       column2=$(echo "$remote_ud" | cut -c1-50 )
    997        printf "| $column1$column2 | \n"
    998998       printf "| %-20s%-50s | \n" "utility directory:" "$column2"
    999999       line=$(echo "$remote_ud" | cut -c51-)
     
    10471047       line=$(echo "$line" | cut -c51-)
    10481048    done
     1049    if [[ $init_cmds != "" ]]
     1050    then
     1051       column2=$(echo $init_cmds | cut -c1-50 )
     1052       printf "| %-20s%-50s | \n" "login init command:" "$column2"
     1053       line=$(echo "$init_cmds" | cut -c51-)
     1054       while [[ "$line" != "" ]]
     1055       do
     1056          column1=""
     1057          column2=$(echo $line | cut -c1-50 )
     1058          printf "| %-20s%-50s | \n" "$column1" "$column2"
     1059          line=$(echo "$line" | cut -c51-)
     1060       done
     1061    fi
    10491062    if [[ $modules != "" ]]
    10501063    then
Note: See TracChangeset for help on using the changeset viewer.