Size: 1759
Comment:
|
Size: 1784
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
(./) This is missing a bit of info but I've set up the framework for it. |
|
Line 12: | Line 10: |
* flyingMonkies.txt - List of landmarks not processed (can be called anything) | |
Line 16: | Line 13: |
* None, just stops the process. | * flyingMonkies.txt - List of landmarks not processed (can be called anything) |
Line 28: | Line 25: |
1.#2 Create a text file listing landmarks that have not been processed yet. (./) I think we need a command line here to do this? Not sure, but it seems like it ?? Put the landmarks without an .OOT file (those not listed in Step 1) into the text file '''flyingMonkies.txt''' in the form of a column. |
1.#2 Create a text file listing landmarks that have been processed and call it 'done.txt'. To do this type: {{{ ls -1 *.OOT > done.txt }}} Make sure to remove the .OOT extension from every landmark name. |
Line 35: | Line 35: |
1.#3 (./) This is labelled as the standard input. Does it get run here ? I need some more info. |
1.#3 When 'rem_done' is typed in the command problem it asks for a file that lists the landmarks LITHOSP were processing ('make_script.in'), a file that list the landmarks that were completely processed ('done.txt'), and the name of the file that will list the landmarks yet to processed (can be called anything). |
Line 48: | Line 46: |
(./) Maybe need something here about what happens at the end? | The INPUT OUTFILE will be a list of landmarks not processed with an 'END' and the end. |
rem_done
Description
This program's main purpose is to allow you to stop a parallel lithosP process and find out which landmarks in make_script.in have yet to be worked on. You should run rem_done if SPC crashes during a parallel process.
Input Files
make_script.in - Script for processing
- balzyWalzy.txt - List of landmarks processed (can be called anything)
Output
- flyingMonkies.txt - List of landmarks not processed (can be called anything)
Using rem_done
- Determine which landmarks have been processed.
- In the working directory that contains .OOT and .INN files, enter this command line:
ls -1 *.OOT | cut -c -6 > balzyWalzy.txt
This puts all the .OOT filenames into the text file balzyWalzy.txt in the form of a column without the .OOT extension.
You must add 'END' as the last row of this text file.
- In the working directory that contains .OOT and .INN files, enter this command line:
- Create a text file listing landmarks that have been processed and call it 'done.txt'. To do this type:
ls -1 *.OOT > done.txt
Make sure to remove the .OOT extension from every landmark name.
You must add 'END' as the last row of this text file.
- When 'rem_done' is typed in the command problem it asks for a file that lists the landmarks LITHOSP were processing ('make_script.in'), a file that list the landmarks that were completely processed ('done.txt'), and the name of the file that will list the landmarks yet to processed (can be called anything).
INPUT INFILE make_script.in INPUT DONEFILE done.txt INPUT OUTFILE FlyingMonkies.txt
The INPUT OUTFILE will be a list of landmarks not processed with an 'END' and the end.
(Compiled by KD)