mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
11 lines
281 B
Bash
11 lines
281 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Dummy script for testing background cancellation processes.
|
||
|
# To use: Create a "dummy" export format, and then use this
|
||
|
# as the LyX --> dummy converter. It will just sit there,
|
||
|
# allowing you to try to cancel.
|
||
|
|
||
|
echo "Sleeping 30 seconds..."
|
||
|
sleep 30;
|
||
|
echo "Done.";
|