Revision 13422
Added by Aaron Marcuse-Kubitza over 10 years ago
README.TXT | ||
---|---|---|
90 | 90 |
List backups/ to view older backups |
91 | 91 |
Check their MD5 sums using the steps under On jupiter below |
92 | 92 |
Remove these backups |
93 |
unset n # on local machine, clear any limit set in .profile (unless desired) |
|
94 | 93 |
unset version # clear any version from last import, etc. |
95 | 94 |
if no commits have been made since the last import (eg. if retrying an |
96 | 95 |
import), set a custom version that differs from the auto-assigned one |
... | ... | |
101 | 100 |
# env var will be inherited by `screen` shell |
102 | 101 |
screen |
103 | 102 |
Press ENTER |
103 |
the following must happen within screen to avoid affecting the outer shell: |
|
104 | 104 |
unset TMOUT # TMOUT causes screen to exit even with background processes |
105 | 105 |
set -o ignoreeof #prevent Ctrl+D from exiting `screen` to keep attached jobs |
106 |
unset n # on local machine, clear any limit set in .profile (unless desired) |
|
106 | 107 |
to import just a subset of the datasources: |
107 | 108 |
declare -ax inputs=(inputs/{src,...}/) |
108 | 109 |
# array vars *not* inherited by `screen` shell |
Also available in: Unified diff
fix: /README.TXT: Full database import: clear any limit set in .profile: moved to inside screen because it must happen within screen to avoid affecting the outer shell