The R Project SVN R

Rev

Rev 47821 | Rev 58676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 47821 Rev 49275
Line 1... Line 1...
1
#
1
#
2
# ${R_HOME}/bin/BATCH
2
# ${R_HOME}/bin/BATCH
3
 
3
 
4
revision='$Rev: 47821 $'
4
revision='$Rev: 49275 $'
5
version=`set - ${revision}; echo ${2}`
5
version=`set - ${revision}; echo ${2}`
6
version="R batch front end: ${R_VERSION} (r${version})
6
version="R batch front end: ${R_VERSION} (r${version})
7
 
7
 
8
Copyright (C) 2000--2006 The R Core Development Team.
8
Copyright (C) 2000--2006 The R Core Development Team.
9
This is free software; see the GNU General Public License version 2
9
This is free software; see the GNU General Public License version 2
Line 38... Line 38...
38
    -v|--version)
38
    -v|--version)
39
      echo "${version}"; exit 0 ;;
39
      echo "${version}"; exit 0 ;;
40
    --no-timing)
40
    --no-timing)
41
      timing=no; shift ;;
41
      timing=no; shift ;;
42
    --) shift; break ;;
42
    --) shift; break ;;
-
 
43
    -d|-g) opts="${opts} ${1} ${2}"; shift; shift ;;
43
    -*) opts="${opts} ${1}"; shift ;;
44
    -*) opts="${opts} ${1}"; shift ;;
44
    *)  break ;;
45
    *)  break ;;
45
  esac
46
  esac
46
done
47
done
47
 
48