Differences From Artifact [7a107135c8]:
- File utils/remrun — part of check-in [7a74b8e952] at 2018-03-26 10:46:58 on branch v1.65-modularization — Added missing copyright notices (user: mrwellan, size: 1415) [annotate] [blame] [check-ins using] [more...]
To Artifact [c7d387d56c]:
- Executable file utils/remrun — part of check-in [b156cc02a8] at 2020-10-16 18:09:31 on branch v1.65 — variable propogation fix (user: pjhatwal, size: 1564) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
38 39 40 41 42 43 44 | __EOF exit fi export NBFAKE_HOST=$1 shift | > > > > > > | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | __EOF exit fi export NBFAKE_HOST=$1 shift cmd="" for var in $(env | egrep "^(PARENT_|MT_)"|cut -d= -f1);do new_var="`echo ${!var}`" cmd="$cmd export $var=$new_var;" done cmd="$cmd $*" exec nbfake $cmd |