Skip to content

Commit

Permalink
keep order as they are in rsync.log
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Mar 14, 2024
1 parent 4b9d39f commit b24efa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/SLpipeline_run1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version="SLpipeline_run1: 14-mar-2024"

#--HELP

Usage: SLpipeline_run1.sh PID OBSNUM [extra args for SLpipeline.sh]
Usage: SLpipeline_run1.sh OBSNUM PID [extra args for SLpipeline.sh]

This script does not allow CLI parameter assignment, but the following ones
are hardcoded in this script
Expand All @@ -29,8 +29,8 @@ if [ "$1" == "--help" ] || [ "$1" == "-h" ];then
exit 0
fi

pid=$1
obsnum=$2
obsnum=$1
pid=$2
shift
shift
extra=$*
Expand Down

0 comments on commit b24efa9

Please sign in to comment.