Changeset 3555 for palm/trunk/SCRIPTS/palmrun
- Timestamp:
- Nov 22, 2018 1:50:37 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmrun
r3549 r3555 27 27 # ----------------- 28 28 # $Id$ 29 # sed-command to remove repeated space-characters replaced by tr-command, to 30 # guarantee mac compatible 31 # 32 # 3549 2018-11-21 15:44:44Z raasch 29 33 # ssh-call for submitting batch jobs on remote systems modified to avoid output 30 34 # of login messages on specific systems … … 674 678 675 679 # REPLACE REPEATING SPACES BETWEEN THE COLUMNS BY A SINGLE SPACE 676 line=`echo "$line" | sed -e "s/\s\{1,\}/ /g"` 680 # HERE, TR IS USED INSTEAD OF SED TO GUARANTEE MAC COMPATIBILITY 681 line=`echo "$line" | tr -s " "` 677 682 678 683 # INTERPRET THE LINE
Note: See TracChangeset
for help on using the changeset viewer.