1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/bin/bash
########################################################################
# #
# Here you can edit the script runned each time the session is saved #
# #
# You have access the following environment variables #
# RAY_SESSION_PATH : Folder of the current session #
# RAY_SCRIPTS_DIR : Folder containing this script #
# ray-scripts folder can be directly in current session #
# or in a parent folder #
# RAY_PARENT_SCRIPT_DIR : Folder containing the scripts that would #
# be runned if RAY_SCRIPTS_DIR would not exists #
# #
# To get any other session informations, refers to ray_control help #
# typing: ray_control --help #
# #
########################################################################
"$RAY_SCRIPTS_DIR/save_via_windows.sh"
ray_control run_step
|