26 lines
870 B
Bash
26 lines
870 B
Bash
echo "Pulling any possible updates"
|
|
echo "ULB"
|
|
(cd "/home/henry/Documents/WA_Repo/en_ulb"; git pull)
|
|
echo "UDB"
|
|
(cd "/home/henry/Documents/WA_Repo/en_udb"; git pull)
|
|
echo "tW"
|
|
(cd "/home/henry/Documents/WA_Repo/en_tw"; git pull)
|
|
echo "tN"
|
|
(cd "/home/henry/Documents/WA_Repo/en_tn"; git pull)
|
|
echo "Updating ULB"
|
|
perl "MakeULB.4.pl"
|
|
echo "Finding mismatched snippets"
|
|
perl "FindMismatchedULBSnippets.3.noChunks.pl"
|
|
echo "Combining ULB and NASB with codes"
|
|
perl "CombineULBandNASBwithCodes.pl"
|
|
firefox "Temp/mismatched_snippets.html" &
|
|
echo "Opening mismatched files"
|
|
perl "OpenMismatchedFiles.pl"
|
|
echo "Opening Temp/ULB_text.txt"
|
|
komodo "Temp/ULB_text.txt" &
|
|
# echo "ExtractLinksFromScratchPad.pl"
|
|
# perl "ExtractLinksFromScratchPad.pl"
|
|
echo ExtractLinksFromMismatchedSnippets.pl
|
|
echo "Extracting links from mismatched snippets file"
|
|
komodo "Temp/ULB_NASB_Strongs.txt" &
|