Differences
This shows you the differences between the selected revisions of the page.
| 2007-06-14 | 2007-10-05 | ||
| no summary (70.188.25.107) | no summary (70.68.139.244) | ||
| Line 3: | Line 3: | ||
| You can see the very same help for the commands as shown here, if you type command ''[[script_commands#help|help <command>]]'' directly in console. | You can see the very same help for the commands as shown here, if you type command ''[[script_commands#help|help <command>]]'' directly in console. | ||
| + | |||
| ===== call ===== | ===== call ===== | ||
| Executes arbitrary [[remote_command|remote shell command]]. | Executes arbitrary [[remote_command|remote shell command]]. | ||
| Line 16: | Line 17: | ||
| Example: | Example: | ||
| <code winscp> | <code winscp> | ||
| - | call touch index.html | + | call mysqldump --opt -u USERNAME --password="PASSWORD" --all-databases > all_databases.sql |
| + | call gzip -c all_databases.sql > all_databases.gz | ||
| + | call rm all_databases.sql | ||
| </code> | </code> | ||