...
The default Post-Record Script contains just one exemplary shell command, which would move the Recording to a user defined folder. Please refer to the → Bash Reference Manual (external link) to create your own Post-Record Scripts.
Code Block | ||
---|---|---|
| ||
#!/bin/bash # modify the shell script accordingly to your needs # $1 is the currently recorded file mv $1 /Users/Administrator/some/folder |
Info |
---|
We recommend to avoid avoiding spaces in file names and for any path filenames and paths used in the scriptPost-Record Script. If spaces can not cannot be avoided, the element must be written in quotation marks . For example instead of >Name Counter< >– or the spaces have to be escaped (as described in the Bash Reference Manual mentioned above). Example: Name Counter → "Name Counter"< must be used. |