Artifact 455975d5ec2c319fdeea78d8e4192b0fbdb58491:
- File utils/nbfake — part of check-in [1b1db65b15] at 2012-10-10 18:19:16 on branch trunk — Added mapping of mtest to megatest in launch, switched nbfake to run jobs in background, changed fsl to fossil in makefile (user: mrwellan, size: 410) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash # ssh localhost "nohup $* > nbfake.log 2> nbfake.err < /dev/null" # Can't always trust $PWD CURRWD=`pwd` if [[ $TARGETHOST == "" ]]; then sh -c "cd $CURRWD;export DISPLAY=$DISPLAY; export PATH=$PATH; nohup $* > NBFAKE-`date +%GWW%V.%u_%T` 2>&1 &" else ssh -n -f $TARGETHOST "sh -c \"cd $CURRWD;export DISPLAY=$DISPLAY; export PATH=$PATH; nohup $* > NBFAKE-`date +%GWW%V.%u_%T` 2>&1 &\"" fi