@@ -2,40 +2,52 @@ Command line interface
2
2
======================
3
3
4
4
The Expyriment command line interface provides a convenient way to run
5
- experiment scripts and apply default settings, as well as access to a
6
- selection of other common functionality.
5
+ experiment scripts and apply default settings, as well as access to a selection
6
+ of other common functionality. Note: non-capitalized letter arguments are
7
+ (chainable) options, capitalized letter arguments run single commands.
7
8
8
9
Usage
9
10
-----
10
11
11
12
::
12
13
13
- expyriment [-h] [-g] [-1] [-2] [-3] [-t] [-w] [-f] [-a] [-i] [-d] [-b]
14
- [-C] [-D] [-J] [-R] [-S] [-T] [-A] [-B] [--version]
15
- [SCRIPT]
14
+ expyriment [-h] [-0] [-1] [-2] [-3] [-a] [-d] [-f] [-i] [-t] [-w]
15
+ [--display INDEX] [--display-resolution WIDTHxHEIGHT]
16
+ [--opengl MODE] [--window-size WIDTHxHEIGHT] [-A] [-B] [-C] [-D]
17
+ [-I] [-J] [-S] [-T] [SCRIPT]
16
18
17
19
positional arguments:
18
- SCRIPT The expyriment script to be executed
20
+ SCRIPT the experiment script to be executed
19
21
20
- optional arguments:
21
- -h, --help show this help message and exit
22
- -g, -0 No OpenGL (no vsync / no blocking)
23
- -1 OpenGL (vsync / no blocking)
24
- -2 OpenGL (vsync / blocking)
25
- -3 OpenGL (vsync / alternative blocking)
26
- -t No time stamps for output files
27
- -w Window mode
28
- -f Fast mode (no initialize delay and fast quitting)
29
- -a Auto create subject ID
30
- -i Intensive logging (log level 2)
31
- -d Develop mode (equivalent to -wfat)
32
- -b Alternative blocking mode (blocking mode 2)
33
- -C Create experiment template
34
- -D Download from Expyriment stash
35
- -J Join data files to one single csv file
36
- -R Join data files and create R data frame (in RDS file)
37
- -S Print system information
38
- -T Run the Expyriment Test Suite
39
- -A Start the Expyriment API Reference Tool
40
- -B Open browser with API reference
41
- --version Print version
22
+ options:
23
+ -h, --help show this help message and exit
24
+ -0, -g, --no-opengl DEPRECATED: no OpenGL (no vsync / no blocking)
25
+ -1, --no-blocking DEPRECATED: OpenGL (vsync / no blocking)
26
+ -2, --blocking DEPRECATED: OpenGL (vsync / blocking)
27
+ -3, --alternative-blocking
28
+ DEPRECATED: OpenGL (vsync / alternative blocking)
29
+ -a, --auto-subject-id
30
+ auto create subject ID
31
+ -d, --develop-mode develop mode (equivalent to -wfat)
32
+ -f, --fast-mode fast mode (no initialize delay and fast quitting)
33
+ -i, --intensive-logging
34
+ intensive logging (log level 2)
35
+ -t, --no-time-stamps no time stamps for output files
36
+ -w, --window-mode window mode
37
+ --display INDEX show the screen on specific display (multi-monitor
38
+ setting)
39
+ --display-resolution WIDTHxHEIGHT
40
+ set the display resolution (only in fullscreen mode)
41
+ --opengl MODE set the OpenGL mode: 0 = No OpenGL (no vsync / no
42
+ blocking), 1 = OpenGL (vsync / no blocking), 2 = OpenGL
43
+ (vsync / blocking)
44
+ --window-size WIDTHxHEIGHT
45
+ set the window size (only in window mode)
46
+ -A, --Api start the API reference tool
47
+ -B, --Browser-api open browser with API reference
48
+ -C, --Create-exp create experiment template
49
+ -D, --Download-stash download from Expyriment stash
50
+ -I, --Interactive start an interactive session
51
+ -J, --Join-data join data files to one single csv file
52
+ -S, --System-info print system information
53
+ -T, --Test-suite run the Expyriment test suite
0 commit comments