Changeset 2670 for palm/trunk
- Timestamp:
- Dec 6, 2017 4:32:19 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmrun
r2669 r2670 27 27 # ----------------- 28 28 # $Id$ 29 # test printouts removed 30 # 31 # 2669 2017-12-06 16:03:27Z raasch 29 32 # file attributes in .palm.iofiles restructured, "loc" attribute completely 30 33 # removed, … … 545 548 s1=`echo "$line" | cut -d" " -f1` 546 549 s2=`echo "$line" | cut -d" " -s -f2` 547 # s2a=$(echo $s2 | cut -d":" -f1)548 550 if [[ $(echo $s2 | grep -c ":") = 0 ]] 549 551 then … … 557 559 s4=`echo "$line" | cut -d" " -s -f4` 558 560 eval s4=\"$s4\" # REPLACE ENVIRONMENT-VARIABLES IN PATH BY THEIR RESPECTIVE VALUES 559 echo "### s4=\"$s4\" "560 561 s5=`echo "$line" | cut -d" " -s -f5` 561 562 s6=`echo "$line" | cut -d" " -s -f6` … … 619 620 then 620 621 found=false 621 echo "### line=\"$line\" "622 622 for actual in $activation_string_list 623 623 do 624 624 for formal in $s3 625 625 do 626 echo "--- actual=\"$actual\" formal=\"$formal\" s3=\"$s3\" " 627 if [[ $actual = $formal || $formal = wildcard ]] 628 then 629 found=true 630 echo "--- found" 631 else 632 echo "--- not found" 633 fi 626 [[ $actual = $formal || $formal = wildcard ]] && found=true 634 627 done 635 628 done … … 639 632 localout_pre[$iout]=$s1; actionout_pre[$iout]=$s2b 640 633 pathout_pre[$iout]=$s4; endout_pre[$iout]=$s5; extout_pre[$iout]=$s6 641 echo "### pathout_pre[$iout]=\"${pathout_pre[$iout]}\" "642 634 643 635 # CHECK IF WILDCARD IS USED AS ACTIVATION STRING
Note: See TracChangeset
for help on using the changeset viewer.