diff --git a/compile_debug+sanityCheck.bat b/compile_debug+sanityCheck.bat index d5e38d6426a6d4028cbcb3a8a86e7b8ddccbb2b0..b1e531e72ded2721cc44054c77a64b04e5916d3f 100644 --- a/compile_debug+sanityCheck.bat +++ b/compile_debug+sanityCheck.bat @@ -21,7 +21,7 @@ for %%k in (HKCU HKLM) do ( :FOUND if %GITFOUND% == yes ( set "PATH=%GIT%bin;%PATH%" - bash --login -c ./sanityCheck.sh + bash --login -c "./sanityCheck.sh java" ) :: Compile the game diff --git a/compile-git+java-sanityCheck.bat b/compile_debug+sanityCheck_legacy.bat similarity index 95% rename from compile-git+java-sanityCheck.bat rename to compile_debug+sanityCheck_legacy.bat index b1e531e72ded2721cc44054c77a64b04e5916d3f..d5e38d6426a6d4028cbcb3a8a86e7b8ddccbb2b0 100644 --- a/compile-git+java-sanityCheck.bat +++ b/compile_debug+sanityCheck_legacy.bat @@ -21,7 +21,7 @@ for %%k in (HKCU HKLM) do ( :FOUND if %GITFOUND% == yes ( set "PATH=%GIT%bin;%PATH%" - bash --login -c "./sanityCheck.sh java" + bash --login -c ./sanityCheck.sh ) :: Compile the game diff --git a/devTools/dictionary_wholeWords.txt b/devTools/dictionary_wholeWords.txt index 50663be9bec5d4ad025e9b0a2f696195c24801b8..a16f94e0b9462327723a0506ef02177dbe2eefb6 100644 --- a/devTools/dictionary_wholeWords.txt +++ b/devTools/dictionary_wholeWords.txt @@ -1,6 +1,6 @@ # Define words that should be searched in src/ on every call of the java # sanityCheck here. -# Words consist only of letters and will will be found whenever that word +# Words consist only of letters and will be found whenever that word # appears, surrounded by non letters # Format is: searchPhrase#errorMessage # Output is: Found searchPhrase; Error: errorMessage diff --git a/devTools/javaSanityCheck/SanityCheck.jar b/devTools/javaSanityCheck/SanityCheck.jar index c2041109e8ab397f6aff8e7bbcf1c19d495baa73..dfa5b22db1171f4165e79f260caad84987e22346 100644 Binary files a/devTools/javaSanityCheck/SanityCheck.jar and b/devTools/javaSanityCheck/SanityCheck.jar differ diff --git a/devTools/javaSanityCheck/info.txt b/devTools/javaSanityCheck/info.txt index e949bd8d03f785569f824dbae27c9c282bcb8014..0285fc08fe3f0c07108177388336f340b73ec13a 100644 --- a/devTools/javaSanityCheck/info.txt +++ b/devTools/javaSanityCheck/info.txt @@ -1,2 +1,4 @@ Full sources for easy import into IDE can be found here: https://gitgud.io/Arkerthan/twine-sanitycheck + +sources.zip are a backup in case the repo is inaccessible. diff --git a/devTools/javaSanityCheck/sources.zip b/devTools/javaSanityCheck/sources.zip new file mode 100644 index 0000000000000000000000000000000000000000..92f59c1b2541717b32c51b197bb8d5c4997b9a2d Binary files /dev/null and b/devTools/javaSanityCheck/sources.zip differ diff --git a/devTools/javaSanityCheck/src/DisallowedTagException.java b/devTools/javaSanityCheck/src/DisallowedTagException.java deleted file mode 100644 index 12d5dfb2974506d0b3a0be713f3b5cf7217944ba..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/DisallowedTagException.java +++ /dev/null @@ -1,11 +0,0 @@ -package org.arkerthan.sanityCheck; - -/** - * @author Arkerthan - */ -public class DisallowedTagException extends RuntimeException { - - public DisallowedTagException(String tag) { - super(tag); - } -} diff --git a/devTools/javaSanityCheck/src/Main.java b/devTools/javaSanityCheck/src/Main.java deleted file mode 100644 index 1cf56950cc03c88d5ee3e6bf0bf0e82d26b628f3..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/Main.java +++ /dev/null @@ -1,331 +0,0 @@ -package org.arkerthan.sanityCheck; - -import org.arkerthan.sanityCheck.element.AngleBracketElement; -import org.arkerthan.sanityCheck.element.CommentElement; -import org.arkerthan.sanityCheck.element.Element; -import org.arkerthan.sanityCheck.element.KnownElement; - -import java.io.*; -import java.nio.charset.Charset; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.util.*; - -/** - * @author Arkerthan - * @version 1.0 - */ -public class Main { - - public static TagSearchTree<Tag> htmlTags, twineTags; - private static String currentFile; - private static int currentLine, currentPosition; - private static Stack<Element> stack; - private static List<SyntaxError> errors = new LinkedList<>(); - private static String[] excluded; - - public static void main(String[] args) { - - //setup - setupExclude(); - setupHtmlTags(); - setupTwineTags(); - Path workingDir = Paths.get("").toAbsolutePath(); - - //actual sanityCheck - runSanityCheckInDirectory(workingDir, new File("src/")); - - //output errors - for (SyntaxError e : - errors) { - System.out.println(e.getError()); - } - } - - - /** - * Goes through the whole directory including subdirectories and runs - * {@link Main#sanityCheck(Path)} on all .tw files - * - * @param dir to be checked - */ - private static void runSanityCheckInDirectory(Path workingDir, File dir) { - //subdirectories are checked recursively - - try { - for (File file : dir.listFiles()) { - if (file.isFile()) { //run sanityCheck if file is a .tw file - String path = file.getAbsolutePath(); - if (path.endsWith(".tw")) { - sanityCheck(workingDir.relativize(file.toPath())); - } - } else if (file.isDirectory()) { - runSanityCheckInDirectory(workingDir, file.getAbsoluteFile()); - } - } - } catch (NullPointerException e) { - e.printStackTrace(); - System.err.println("Couldn't read directory " + currentFile); - System.exit(-1); - } - } - - /** - * Runs the sanity check for one file. Does not run if file is excluded. - * - * @param path file to be checked - */ - private static void sanityCheck(Path path) { - File file = path.toFile(); - - // replace this with a known encoding if possible - Charset encoding = Charset.defaultCharset(); - - if (!excluded(file.getPath())) { - currentFile = file.getPath(); - currentLine = 1; - stack = new Stack<>(); - - //actually opening and reading the file - try (InputStream in = new FileInputStream(file); - Reader reader = new InputStreamReader(in, encoding); - // buffer for efficiency - Reader buffer = new BufferedReader(reader)) { - handleCharacters(buffer); - } catch (IOException e) { - e.printStackTrace(); - System.err.println("Couldn't read " + file); - } - } - } - - /** - * sets up a {@link TagSearchTree<Tag>} for fast access of HTML tags later - */ - private static void setupHtmlTags() { - //load HTML tags into a list - List<Tag> TagsList = loadTags("devTools/javaSanityCheck/htmlTags"); - - //turn List into alphabetical search tree - try { - htmlTags = new TagSearchTree<>(TagsList); - } catch (ArrayIndexOutOfBoundsException e) { - System.err.println("Illegal Character in devTools/javaSanityCheck/htmlTags"); - System.exit(-1); - } - } - - /** - * sets up a {@link TagSearchTree<Tag>} for fast access of twine tags later - */ - private static void setupTwineTags() { - //load twine tags into a list - List tagsList = loadTags("devTools/javaSanityCheck/twineTags"); - - //turn List into alphabetical search tree - try { - twineTags = new TagSearchTree<>(tagsList); - } catch (ArrayIndexOutOfBoundsException e) { - System.err.println("Illegal Character in devTools/javaSanityCheck/twineTags"); - System.exit(-1); - } - } - - /** - * Loads a list of tags from a file - * - * @param filePath file to load tags from - * @return loaded tags - */ - private static List<Tag> loadTags(String filePath) { - List<Tag> tagsList = new LinkedList<>(); - try { - Files.lines(new File(filePath).toPath()).map(String::trim) - .filter(s -> !s.startsWith("#")) - .forEach(s -> tagsList.add(parseTag(s))); - } catch (IOException e) { - System.err.println("Couldn't read " + filePath); - } - return tagsList; - } - - /** - * Turns a string into a Tag - * ";1" at the end of the String indicates that the tag needs to be closed later - * - * @param s tag as String - * @return tag as Tag - */ - private static Tag parseTag(String s) { - String[] st = s.split(";"); - if (st.length > 1 && st[1].equals("1")) { - return new Tag(st[0], false); - } - return new Tag(st[0], true); - } - - /** - * sets up the excluded files array. - */ - private static void setupExclude() { - //load excluded files - List<String> excludedList = new ArrayList<>(); - try { - Files.lines(new File("devTools/javaSanityCheck/excluded").toPath()).map(String::trim) - .filter(s -> !s.startsWith("#")) - .forEach(excludedList::add); - } catch (IOException e) { - System.err.println("Couldn't read devTools/javaSanityCheck/excluded"); - } - - //turn excluded files into an array and change path to windows style if needed - if (isWindows()) { - excluded = new String[excludedList.size()]; - int i = 0; - for (String s : - excludedList) { - excluded[i++] = s.replaceAll("/", "\\\\"); - } - } else { - excluded = excludedList.toArray(new String[0]); - } - } - - /** - * @return whether OS is Windows or not - */ - private static boolean isWindows() { - return (System.getProperty("os.name").toLowerCase(Locale.ENGLISH).contains("windows")); - } - - /** - * checks if a file or directory is excluded from the sanity check - * - * @param s file/directory to be checked - * @return whether it is excluded or not - */ - private static boolean excluded(String s) { - for (String ex : - excluded) { - if (s.startsWith(ex)) return true; - } - return false; - } - - /** - * Reads the file character by character. - * - * @param reader reader that is read - * @throws IOException thrown if the file can't be read - */ - private static void handleCharacters(Reader reader) throws IOException { - int r; - while ((r = reader.read()) != -1) { - char c = (char) r; - handleCharacter(c); - } - } - - /** - * Handles a single character - * - * @param c next character - */ - private static void handleCharacter(char c) { - //updating position - currentPosition++; - if (c == '\n') { - currentLine++; - currentPosition = 1; - } - - //try applying to the innermost element - if (!stack.empty()) { - int change; - try { - change = stack.peek().handleChar(c); - } catch (SyntaxError e) { - change = e.getChange(); - addError(e); - } - - //change greater 0 means the innermost element did some work - if (change > 0) { - //2 means the Element is complete - if (change == 2) { - //remove the topmost element from stack since it is complete - stack.pop(); - return; - } - //3 means the Element is complete and part of a two or more tag system - if (change == 3) { - //remove the topmost element from stack since it is complete - KnownElement k = stack.pop().getKnownElement(); - //if KnownElement k is closing another element, check if there is one and remove it - if (k.isClosing()) { - if (stack.empty()) { //there are no open elements at all - addError(new SyntaxError("Closed tag " + k.getShortDescription() + " without " + - "having any open tags.", -2)); - } else if (stack.peek() instanceof KnownElement) { - //get opening tag - KnownElement kFirst = (KnownElement) stack.pop(); - //check if closing element matches the opening element - if (!kFirst.isMatchingElement(k)) { - addError(new SyntaxError("Opening tag " + kFirst.getShortDescription() + - " does not match closing tag " + k.getShortDescription() + ".", -2)); - } - } else { - //There closing tag inside another not Known element: <div </html> - addError(new SyntaxError("Closing tag " + k.getShortDescription() + " inside " + - "another tag " + stack.peek().getShortDescription() + " without opening first.", - -2, true)); - } - } - //check if the element needs to be closed by another - if (k.isOpening()) { - stack.push(k); - } - return; - } - //means the element couldn't do anything with it and is finished - if (change == 4) { - stack.pop(); - } else { - return; - } - } - } - - - //innermost element was uninterested, trying to find matching element - switch (c) { - //case '@': - //stack.push(new AtElement(currentLine, currentPosition)); - //break; - case '<': - stack.push(new AngleBracketElement(currentLine, currentPosition)); - break; - //case '>': - //addError(new SyntaxError("Dangling \">\", current innermost: " + (stack.empty() ? "null" : stack.peek().getShortDescription()), -2)); - //break; - case '/': - stack.push(new CommentElement(currentLine, currentPosition)); - break; - //case '(': - //stack.push(new BracketElement(currentLine, currentPosition)); - } - } - - /** - * add an error to the error list - * - * @param e new error - */ - private static void addError(SyntaxError e) { - e.setFile(currentFile); - e.setLine(currentLine); - e.setPosition(currentPosition); - errors.add(e); - } -} diff --git a/devTools/javaSanityCheck/src/SyntaxError.java b/devTools/javaSanityCheck/src/SyntaxError.java deleted file mode 100644 index ccb49ccf8882a8f10dbbf81e9d78128588d10c7c..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/SyntaxError.java +++ /dev/null @@ -1,67 +0,0 @@ -package org.arkerthan.sanityCheck; - -/** - * @author Arkerthan - */ -public class SyntaxError extends Exception { - private String file; - private int line, position; - private String description; - private int change; //see Element for values; -2 means not thrown - private boolean warning = false; - - /** - * @param description description of error - * @param change state change as specified in Element - */ - public SyntaxError(String description, int change) { - this.description = description; - this.change = change; - } - - /** - * @param description description of error - * @param change state change as specified in Element - * @param warning whether it is a warning or an error - */ - public SyntaxError(String description, int change, boolean warning) { - this(description, change); - this.warning = warning; - } - - /** - * @param file at which the error occurred - */ - public void setFile(String file) { - this.file = file; - } - - /** - * @param line in which the error occurred - */ - public void setLine(int line) { - this.line = line; - } - - /** - * @param position at which the error occurred - */ - public void setPosition(int position) { - this.position = position; - } - - /** - * @return error message - */ - public String getError() { - String s = warning ? "Warning: " : "Error: "; - return s + file + ": " + line + ":" + position + " : " + description; - } - - /** - * @return change that happened in Element before it was thrown. -1 if not thrown. - */ - public int getChange() { - return change; - } -} diff --git a/devTools/javaSanityCheck/src/Tag.java b/devTools/javaSanityCheck/src/Tag.java deleted file mode 100644 index 025cef72c10fda5d3dbe3d45e2af1b907f6841df..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/Tag.java +++ /dev/null @@ -1,14 +0,0 @@ -package org.arkerthan.sanityCheck; - -/** - * @author Arkerthan - */ -public class Tag { - public final String tag; - public final boolean single; - - public Tag(String tag, boolean single) { - this.tag = tag; - this.single = single; - } -} diff --git a/devTools/javaSanityCheck/src/TagSearchTree.java b/devTools/javaSanityCheck/src/TagSearchTree.java deleted file mode 100644 index 68165866594478e56b990f822d30edddacf14eef..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/TagSearchTree.java +++ /dev/null @@ -1,81 +0,0 @@ -package org.arkerthan.sanityCheck; - -import java.util.List; - -/** - * @param <E> Tag class to be stored - * @author Arkerthan - * <p> - * Tag SearchTree stores Tags in an alphabetical search tree. - * Once created the search tree can't be changed anymore. - */ -public class TagSearchTree<E extends Tag> { - private static final int SIZE = 128; - private final TagSearchTree<E>[] branches; - private E element = null; - private String path; - - /** - * creates a new empty TagSearchTree - */ - private TagSearchTree() { - branches = new TagSearchTree[SIZE]; - } - - /** - * Creates a new filled TagSearchTree - * - * @param list Tags to be inserted - */ - public TagSearchTree(List<E> list) { - this(); - for (E e : list) { - this.add(e, 0); - } - } - - /** - * adds a new Tag to the TagSearchTree - * - * @param e Tag to be stored - * @param index index of relevant char for adding in tag - */ - private void add(E e, int index) { - //set the path to here - path = e.tag.substring(0, index); - //checks if tag has to be stored here or further down - if (e.tag.length() == index) { - element = e; - } else { - //store tag in correct branch - char c = e.tag.charAt(index); - if (branches[c] == null) { - branches[c] = new TagSearchTree<>(); - } - branches[c].add(e, index + 1); - } - } - - /** - * @param c character of branch needed - * @return branch or null if branch doesn't exist - */ - public TagSearchTree<E> getBranch(char c) { - if (c >= SIZE) return null; - return branches[c]; - } - - /** - * @return stored Tag, null if empty - */ - public E getElement() { - return element; - } - - /** - * @return path inside full tree to get to this Branch - */ - public String getPath() { - return path; - } -} diff --git a/devTools/javaSanityCheck/src/UnknownStateException.java b/devTools/javaSanityCheck/src/UnknownStateException.java deleted file mode 100644 index 348a275e20141a6b0fdaefda4b667ca821d305cc..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/UnknownStateException.java +++ /dev/null @@ -1,11 +0,0 @@ -package org.arkerthan.sanityCheck; - -/** - * @author Arkerthan - */ -public class UnknownStateException extends RuntimeException { - - public UnknownStateException(int state) { - super(String.valueOf(state)); - } -} diff --git a/devTools/javaSanityCheck/src/element/AngleBracketElement.java b/devTools/javaSanityCheck/src/element/AngleBracketElement.java deleted file mode 100644 index 124c85954458795262dafd34d96de9064f3965b0..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/AngleBracketElement.java +++ /dev/null @@ -1,380 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.*; - -import java.util.Arrays; -import java.util.List; - -/** - * @author Arkerthan - */ -public class AngleBracketElement extends Element { - private static final List<String> logicTags = Arrays.asList("if", "elseif", "else", "switch", "case", "default"); - private int state = 0; - /* - 0 - initial: < - TWINE - 1 - << - -1 - <</ - 2 - trying to complete twine tag: <<tag ???>> - -2 - trying to complete twine tag: <</tag>> - 3 - waiting for >> - -3 - expecting > from 3 - 4 - waiting for >> with KnownElement - -4 - expecting > from 4 - 5 - expecting >> - -5 - expecting > - 6 - expecting > with KnownElement opening; comparison? - -6 - expecting > with KnownElement closing - - HTML - -9 - </ - 10 - trying to complete HTML tag: <tag ???> - -10 - trying to complete HTML tag: </tag> - 11 - waiting for > - -11 - expecting > - 12 - waiting for > with KnownElement - */ - - private TagSearchTree<Tag> tree; - - public AngleBracketElement(int line, int pos) { - super(line, pos); - } - - @Override - public int handleChar(char c) throws SyntaxError { - switch (state) { - case 0: - switch (c) { - case '<': - state = 1; - return 1; - case '/': - state = -9; - return 1; - case '>':// empty <> - case ' ':// assume comparison - case '=':// " " - case '3':// a heart: <3 - return 2; - default: - try { - state = 10; - tree = Main.htmlTags; - return handleOpeningHTML(c); - } catch (SyntaxError e) { - state = 1; - throw new SyntaxError("Opening \"<\" missing, found " + c, 1); - } - } - case 1: - if (c == '<') { - throw new SyntaxError("Too many \"<\".", 1); - } else if (c == '>') { - state = 3; - throw new SyntaxError("Empty Statement?", 1); - } else if (c == '/') { - state = -1; - return 1; - } - state = 2; - tree = Main.twineTags; - return handleOpeningTwine(c); - case -1: - if (c == '>') { - throw new SyntaxError("Empty Statement?", 2, true); - } - state = -2; - tree = Main.twineTags; - return handleClosingTwine(c); - - case 2: - return handleOpeningTwine(c); - case -2: - return handleClosingTwine(c); - case 3: - if (c == '>') { - state = -3; - return 1; - } - break; - case -3: - if (c == '>') { - return 2; - } else if (c == ' ' || c == '=') { // assuming comparison - state = 3; - return 1; - } else { - throw new SyntaxError("Closing \">\" missing, opened tag at [" + line + ":" + pos + "]", 2); - } - case 4: - if (c == '>') { - state = -4; - return 1; - } - break; - case -4: - if (c == '>') { - return 3; - } else if (c == ' ' || c == '=') { // assuming comparison - state = 4; - return 1; - } else { - throw new SyntaxError("Closing \">\" missing, opened tag at[" + line + ":" + pos + "]", 2); - } - case 5: - if (c == '>') { - state = -5; - return 1; - } else { - throw new SyntaxError("Closing \">\" missing, opened tag at [" + line + ":" + pos + "]", 2); - } - case -5: - if (c == '>') { - return 2; - } - throw new SyntaxError("Closing \">\" missing, opened tag at [" + line + ":" + pos + "]", 2); - case 6: - if (c == '>') { - return 3; - } else if (c == ' ' || c == '=') { - state = 3; - return 1; - } else { - throw new SyntaxError("Closing \">\" missing, opened tag at [" + line + ":" + pos + "]", 3); - } - case -6: - if (c == '>') { - return 3; - } - throw new SyntaxError("Closing \">\" missing, opened tag at [" + line + ":" + pos + "]", 3); - - case -9: - if (c == '>') { - throw new SyntaxError("Empty Statement?", 2, true); - } - state = -10; - tree = Main.htmlTags; - return handleClosingHTML(c); - case 10: - return handleOpeningHTML(c); - case -10: - return handleClosingHTML(c); - case 11: - if (c == '>') - return 2; - if (c == '@') //@ inside HTML tags is allowed - return 1; - break; - case -11: - if (c == '>') - return 2; - throw new SyntaxError("Closing \">\" missing [2]", 2); - case 12: - if (c == '>') - return 3; - if (c == '@') //@ inside HTML tags is allowed - return 1; - break; - default: - throw new UnknownStateException(state); - } - return 0; - } - - private int handleOpeningHTML(char c) throws SyntaxError { - if (c == ' ') { - state = 11; - if (tree.getElement() == null) { - throw new SyntaxError("Unknown HTML tag", 1); - } - if (!tree.getElement().single) { - k = new KnownHtmlElement(line, pos, true, tree.getElement().tag); - state = 12; - return 1; - } - return 1; - } - if (c == '>') { - if (tree.getElement() == null) { - throw new SyntaxError("Unknown HTML tag", 2); - } - if (!tree.getElement().single) { - k = new KnownHtmlElement(line, pos, true, tree.getElement().tag); - return 3; - } - return 2; - } - - tree = tree.getBranch(c); - if (tree == null) { - state = 11; - throw new SyntaxError("Unknown HTML tag or closing \">\" missing, found " + c, 1); - } - - return 1; - } - - private int handleClosingHTML(char c) throws SyntaxError { - if (c == '>') { - if (tree.getElement() == null) { - throw new SyntaxError("Unknown HTML tag: " + tree.getPath(), 2); - } - if (tree.getElement().single) { - throw new SyntaxError("Single HTML tag used as closing Tag: " + tree.getElement().tag, 2); - } - k = new KnownHtmlElement(line, pos, false, tree.getElement().tag); - return 3; - } - - tree = tree.getBranch(c); - if (tree == null) { - state = -11; - throw new SyntaxError("Unknown HTML tag or closing \">\" missing, found " + c, 1); - } - - return 1; - } - - - private int handleOpeningTwine(char c) throws SyntaxError { - if (c == ' ') { - state = 3; - if (tree.getElement() == null) { - //assuming not listed means widget until better solution - return 1; - } - if (!tree.getElement().single) { - if (logicTags.contains(tree.getElement().tag)) { - k = new KnownLogicElement(line, pos, tree.getElement().tag, false); - } else { - k = new KnownTwineElement(line, pos, true, tree.getElement().tag); - } - state = 4; - return 1; - } - return 1; - } - if (c == '>') { - state = -5; - if (tree.getElement() == null) { - //assuming not listed means widget until better solution - return 1; - } - if (!tree.getElement().single) { - if (logicTags.contains(tree.getElement().tag)) { - k = new KnownLogicElement(line, pos, tree.getElement().tag, false); - } else { - k = new KnownTwineElement(line, pos, true, tree.getElement().tag); - } - state = 6; - return 1; - } - return 2; - } - - tree = tree.getBranch(c); - if (tree == null) { - //assuming not listed means widget until better solution - state = 3; - } - - return 1; - } - - private int handleClosingTwine(char c) throws SyntaxError { - if (c == '>') { - if (tree.getElement() == null) { - throw new SyntaxError("Unknown Twine tag: " + tree.getPath(), 2); - } - if (tree.getElement().single) { - throw new SyntaxError("Single Twine tag used as closing Tag: " + tree.getElement().tag, 2); - } - if (logicTags.contains(tree.getElement().tag)) { - k = new KnownLogicElement(line, pos, tree.getElement().tag, true); - } else { - k = new KnownTwineElement(line, pos, false, tree.getElement().tag); - } - state = -6; - return 1; - } - - tree = tree.getBranch(c); - if (tree == null) { - state = 3; - throw new SyntaxError("Unknown Twine closing tag or closing \">>\" missing, found " + c, 1); - } - - return 1; - } - - @Override - public String getShortDescription() { - StringBuilder builder = new StringBuilder(); - builder.append(getPositionAsString()).append(" "); - switch (state) { - case 0: - builder.append("<"); - break; - //TWINE - case 1: - builder.append("<<"); - break; - case -1: - builder.append("<</"); - break; - case 2: - builder.append("<<").append(tree.getPath()); - break; - case -2: - builder.append("<</").append(tree.getPath()); - break; - case 3: - builder.append("<<???"); - break; - case -3: - builder.append("<<???>"); - break; - case 4: - builder.append("<<").append(tree.getPath()).append(" ???"); - break; - case -4: - builder.append("<<").append(tree.getPath()).append(" ???>"); - break; - case 5: - builder.append("<<???"); - break; - case -5: - builder.append("<<").append(tree == null ? "???" : tree.getPath()).append(">"); - break; - case 6: - builder.append("<<").append(tree.getPath()).append(" ???>"); - break; - case -6: - builder.append("<</").append(tree.getPath()).append(">"); - break; - //HTML - case -9: - builder.append("</"); - break; - case 10: - builder.append("<").append(tree.getPath()); - break; - case -10: - builder.append("</").append(tree.getPath()); - break; - case 11: - builder.append("<?").append(tree == null ? "???" : tree.getPath()); - break; - case -11: - builder.append("</").append(tree == null ? "???" : tree.getPath()); - break; - case 12: - builder.append("<").append(tree.getPath()).append(" ???"); - default: - throw new UnknownStateException(state); - } - return builder.toString(); - } -} diff --git a/devTools/javaSanityCheck/src/element/AtElement.java b/devTools/javaSanityCheck/src/element/AtElement.java deleted file mode 100644 index f6e39a6ddce230dab16b42b52fbd14b054d20c52..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/AtElement.java +++ /dev/null @@ -1,108 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.SyntaxError; -import org.arkerthan.sanityCheck.UnknownStateException; - -/** - * @author Arkerthan - */ -public class AtElement extends Element { - private int state = 0; - // 0 = @ - // 1 = @@ - // 2 = @@. - // 3 = @@.a -- @@.ab -- @@.abc - // 4 = @@.abc;abc - // 5 = @@.abc;abc@ - - // example: @@.red;some text@@ - - public AtElement(int line, int pos) { - super(line, pos); - } - - @Override - public int handleChar(char c) throws SyntaxError { - switch (state) { - case 0: - state = 1; - if (c == '@') { - return 1; - } else { - if (c == '.') { - state = 2; - } - throw new SyntaxError("Opening \"@\" missing.", 1); - } - case 1: - if (c == '.') { - state = 2; - return 1; - } else { - state = 4; - throw new SyntaxError("\".\" missing, found \"" + c + "\". This might also indicate a " + - "missing closure in the previous color code.", 0, true); - } - case 2: - state = 3; - if (Character.isAlphabetic(c)) { - return 1; - } else { - throw new SyntaxError("Identifier might be wrong.", 1, true); - } - case 3: - if (c == ';') { - state = 4; - return 1; - } else if (c == ' ') { - state = 4; - throw new SyntaxError("\";\" missing or wrong space.", 1); - } - break; - case 4: - if (c == '@') { - state = 5; - return 1; - } - break; - case 5: - if (c == '@') { - return 2; - } else { - throw new SyntaxError("Closing \"@\" missing.", 2); - } - default: - throw new UnknownStateException(state); - } - return 0; - } - - @Override - public String getShortDescription() { - StringBuilder builder = new StringBuilder(); - builder.append(getPositionAsString()).append(" "); - switch (state) { - case 0: - builder.append("@"); - break; - case 1: - builder.append("@@"); - break; - case 2: - builder.append("@@."); - break; - case 3: - builder.append("@@.???"); - break; - case 4: - builder.append("@@???"); - break; - case 5: - builder.append("@@???@"); - break; - default: - throw new UnknownStateException(state); - } - return builder.toString(); - } -} diff --git a/devTools/javaSanityCheck/src/element/BracketElement.java b/devTools/javaSanityCheck/src/element/BracketElement.java deleted file mode 100644 index 89b0a67ef6a1e031fd4ae0e29808c9d11b8ce33e..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/BracketElement.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.SyntaxError; - -/** - * @author Arkerthan - */ -public class BracketElement extends Element { - //int state = 0; - - public BracketElement(int line, int pos) { - super(line, pos); - } - - @Override - public int handleChar(char c) throws SyntaxError { - if (c == ')') { - return 2; - } else { - return 0; - } - } - - @Override - public String getShortDescription() { - return getPositionAsString() + " (???"; - } -} diff --git a/devTools/javaSanityCheck/src/element/CommentElement.java b/devTools/javaSanityCheck/src/element/CommentElement.java deleted file mode 100644 index e18e74194320713de6c34379f087929d1665e672..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/CommentElement.java +++ /dev/null @@ -1,75 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.SyntaxError; -import org.arkerthan.sanityCheck.UnknownStateException; - -/** - * @author Arkerthan - */ -public class CommentElement extends Element { - private int state = 0; - /* - 0 - / - 1 - /*??? - 2 - /*???* - 3 - /%??? - 4 - /%???% - */ - - /** - * @param line line in which comment starts - * @param pos position in line where comment starts - */ - public CommentElement(int line, int pos) { - super(line, pos); - } - - @Override - public int handleChar(char c) throws SyntaxError { - switch (state) { - case 0: - if (c == '*') { - state = 1; - } else if (c == '%') { - state = 3; - } else if (c == '>') { - throw new SyntaxError("XHTML style closure", 4, true); - } else { - return 4; - } - break; - case 1: - if (c == '*') { - state = 2; - } - break; - case 2: - if (c == '/') { - return 2; - } else if (c == '*') { - return 1; - } - state = 1; - break; - case 3: - if (c == '%') { - state = 4; - } - break; - case 4: - if (c == '/') { - return 2; - } - state = 3; - break; - default: - throw new UnknownStateException(state); - } - return 1; - } - - @Override - public String getShortDescription() { - return getPositionAsString() + "comment"; - } -} diff --git a/devTools/javaSanityCheck/src/element/Element.java b/devTools/javaSanityCheck/src/element/Element.java deleted file mode 100644 index 205f700362b56e4616f65f9b92d8961e6118663d..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/Element.java +++ /dev/null @@ -1,55 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.SyntaxError; - -/** - * @author Arkerthan - */ -public abstract class Element { - protected KnownElement k; - protected int line, pos; - - /** - * @param line Line the instance was created - * @param pos Position in line the instance was created - */ - protected Element(int line, int pos) { - this.line = line; - this.pos = pos; - } - - /** - * Parses a Char and returns an int depending on the state of the element - * 0 - the Element did nothing - * 1 - the Element changed state - * 2 - the Element is finished - * 3 - the Element is finished and a KnownHtmlElement was generated - * 4 - the Element is finished and the char is still open for use - * - * @param c char to be parsed - * @return state change - * @throws SyntaxError thrown when an syntax error is detected - */ - public abstract int handleChar(char c) throws SyntaxError; - - /** - * @return the constructed KnownElement. null if none was constructed yet. - */ - public KnownElement getKnownElement() { - return k; - } - - /** - * Returns the line and position of the Element in the file it was created in. - * - * @return position of Element in file as String - */ - public String getPositionAsString() { - return "[" + line + ":" + pos + "]"; - } - - /** - * @return a short description usually based on state and position of the Element - */ - public abstract String getShortDescription(); -} diff --git a/devTools/javaSanityCheck/src/element/KnownElement.java b/devTools/javaSanityCheck/src/element/KnownElement.java deleted file mode 100644 index 709fc3891776e4b6cb0c4fef77590d20fea1b9a6..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/KnownElement.java +++ /dev/null @@ -1,38 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.SyntaxError; - -/** - * @author Arkerthan - */ -public abstract class KnownElement extends Element { - - /** - * @param line at which it begins - * @param pos at which it begins - */ - public KnownElement(int line, int pos) { - super(line, pos); - } - - /** - * @return true, if it needs another Known Element to close it. - */ - public abstract boolean isOpening(); - - /** - * @return true if it closes another Element. - */ - public abstract boolean isClosing(); - - /** - * @param k Element to be checked - * @return true if given Element closes Element - */ - public abstract boolean isMatchingElement(KnownElement k); - - @Override - public int handleChar(char c) throws SyntaxError { - return 0; - } -} diff --git a/devTools/javaSanityCheck/src/element/KnownHtmlElement.java b/devTools/javaSanityCheck/src/element/KnownHtmlElement.java deleted file mode 100644 index d7c25299ba4ac3a8e3bed8638597bea2bb0edc30..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/KnownHtmlElement.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -/** - * @author Arkerthan - */ -public class KnownHtmlElement extends KnownElement { - - private boolean opening; - private String statement; - - /** - * @param line at which it begins - * @param pos at which it begins - * @param opening if it opens a tag: <tag> or closes it: </tag> - * @param statement statement inside the tag - */ - public KnownHtmlElement(int line, int pos, boolean opening, String statement) { - super(line, pos); - this.opening = opening; - this.statement = statement; - } - - @Override - public String getShortDescription() { - StringBuilder builder = new StringBuilder(); - builder.append(getPositionAsString()).append(" <"); - if (!opening) { - builder.append("/"); - } - return builder.append(statement).append(">").toString(); - } - - @Override - public boolean isOpening() { - return opening; - } - - @Override - public boolean isClosing() { - return !opening; - } - - @Override - public boolean isMatchingElement(KnownElement k) { - if (k instanceof KnownHtmlElement) { - return ((KnownHtmlElement) k).statement.equals(this.statement); - } - return false; - } -} diff --git a/devTools/javaSanityCheck/src/element/KnownLogicElement.java b/devTools/javaSanityCheck/src/element/KnownLogicElement.java deleted file mode 100644 index 5c8496a5c554a0967eb53e5c7e9cd4973f39f51c..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/KnownLogicElement.java +++ /dev/null @@ -1,120 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -import org.arkerthan.sanityCheck.DisallowedTagException; -import org.arkerthan.sanityCheck.UnknownStateException; - -import java.util.Arrays; -import java.util.List; - -/** - * @author Arkerthan - */ -public class KnownLogicElement extends KnownElement { - private static final List<String> allowedTags = Arrays.asList("if", "elseif", "else"); - private final int state; - private boolean last; - /* - 0 - if - 1 - elseif - 2 - else - 3 - switch - 4 - case - 5 - default - */ - - public KnownLogicElement(int line, int pos, String tag, boolean last) { - this(line, pos, tag); - this.last = last; - } - - public KnownLogicElement(int line, int pos, String tag) { - super(line, pos); - switch (tag) { - case "if": - state = 0; - break; - case "elseif": - state = 1; - break; - case "else": - state = 2; - break; - case "switch": - state = 3; - break; - case "case": - state = 4; - break; - case "default": - state = 5; - break; - default: - throw new DisallowedTagException(tag); - } - last = false; - } - - @Override - public boolean isOpening() { - return !last; - } - - @Override - public boolean isClosing() { - return (state != 0 && state != 3) || last; - } - - @Override - public boolean isMatchingElement(KnownElement k) { - if (!(k instanceof KnownLogicElement)) { - return false; - } - KnownLogicElement l = (KnownLogicElement) k; - switch (state) { - case 0: - case 1: - return l.state == 1 || l.state == 2 || (l.state == 0 && l.last); - case 2: - return l.state == 0 && l.last; - case 3: - case 4: - return l.state == 3 || l.state == 4; - case 5: - return l.state == 3 && l.last; - default: - throw new UnknownStateException(state); - } - } - - @Override - public String getShortDescription() { - StringBuilder builder = new StringBuilder(); - builder.append(getPositionAsString()).append(" <<"); - if (last) { - builder.append('/'); - } - switch (state) { - case 0: - builder.append("if"); - break; - case 1: - builder.append("elseif"); - break; - case 2: - builder.append("else"); - break; - case 3: - builder.append("switch"); - break; - case 4: - builder.append("case"); - break; - case 5: - builder.append("default"); - break; - default: - throw new UnknownStateException(state); - } - return builder.append(">>").toString(); - } -} diff --git a/devTools/javaSanityCheck/src/element/KnownTwineElement.java b/devTools/javaSanityCheck/src/element/KnownTwineElement.java deleted file mode 100644 index 9693fb840dfda0338d6d87ad2c602b6769126d3d..0000000000000000000000000000000000000000 --- a/devTools/javaSanityCheck/src/element/KnownTwineElement.java +++ /dev/null @@ -1,50 +0,0 @@ -package org.arkerthan.sanityCheck.element; - -/** - * @author Arkerthan - */ -public class KnownTwineElement extends KnownElement { - - private boolean opening; - private String statement; - - /** - * @param line at which it begins - * @param pos at which it begins - * @param opening if it opens a tag: <<tag>> or closes it: <</tag>> - * @param statement statement inside the tag - */ - public KnownTwineElement(int line, int pos, boolean opening, String statement) { - super(line, pos); - this.opening = opening; - this.statement = statement; - } - - @Override - public String getShortDescription() { - StringBuilder builder = new StringBuilder(); - builder.append(getPositionAsString()).append(" <<"); - if (!opening) { - builder.append("/"); - } - return builder.append(statement).append(">>").toString(); - } - - @Override - public boolean isOpening() { - return opening; - } - - @Override - public boolean isClosing() { - return !opening; - } - - @Override - public boolean isMatchingElement(KnownElement k) { - if (k instanceof KnownTwineElement) { - return ((KnownTwineElement) k).statement.equals(this.statement); - } - return false; - } -} diff --git a/devTools/spell_check.txt b/devTools/spell_check.txt deleted file mode 100644 index c7adc4b4f08b2c7fd0106492ec50afb3431dab48..0000000000000000000000000000000000000000 --- a/devTools/spell_check.txt +++ /dev/null @@ -1,4076 +0,0 @@ -s/\babandonned\b/abandoned/g -s/\baberation\b/aberration/g -s/\babilityes\b/abilities/g -s/\babilties\b/abilities/g -s/\babilty\b/ability/g -s/\babondon\b/abandon/g -s/\babbout\b/about/g -s/\babotu\b/about/g -s/\babouta\b/about a/g -s/\baboutit\b/about it/g -s/\baboutthe\b/about the/g -s/\babscence\b/absence/g -s/\babondoned\b/abandoned/g -s/\babondoning\b/abandoning/g -s/\babondons\b/abandons/g -s/\baborigene\b/aborigine/g -s/\baccesories\b/accessories/g -s/\baccidant\b/accident/g -s/\babortificant\b/abortifacient/g -s/\babreviate\b/abbreviate/g -s/\babreviated\b/abbreviated/g -s/\babreviation\b/abbreviation/g -s/\babritrary\b/arbitrary/g -s/\babsail\b/abseil/g -s/\babsailing\b/abseiling/g -s/\babsense\b/absence/g -s/\babsolutly\b/absolutely/g -s/\babsorbsion\b/absorption/g -s/\babsorbtion\b/absorption/g -s/\babudance\b/abundance/g -s/\babundacies\b/abundances/g -s/\babundancies\b/abundances/g -s/\babundunt\b/abundant/g -s/\babutts\b/abuts/g -s/\bacadamy\b/academy/g -s/\bacadmic\b/academic/g -s/\baccademic\b/academic/g -s/\baccademy\b/academy/g -s/\bacccused\b/accused/g -s/\baccelleration\b/acceleration/g -s/\bacceptence\b/acceptance/g -s/\bacceptible\b/acceptable/g -s/\baccessable\b/accessible/g -s/\bacident\b/accident/g -s/\baccidentaly\b/accidentally/g -s/\baccidently\b/accidentally/g -s/\bacclimitization\b/acclimatization/g -s/\baccomadate\b/accommodate/g -s/\baccomadated\b/accommodated/g -s/\baccomadates\b/accommodates/g -s/\baccomadating\b/accommodating/g -s/\baccomadation\b/accommodation/g -s/\baccomadations\b/accommodations/g -s/\baccomdate\b/accommodate/g -s/\baccomodate\b/accommodate/g -s/\baccomodated\b/accommodated/g -s/\baccomodates\b/accommodates/g -s/\baccomodating\b/accommodating/g -s/\baccomodation\b/accommodation/g -s/\baccomodations\b/accommodations/g -s/\baccompanyed\b/accompanied/g -s/\baccordeon\b/accordion/g -s/\baccordian\b/accordion/g -s/\baccoring\b/according/g -s/\baccoustic\b/acoustic/g -s/\baccquainted\b/acquainted/g -s/\baccrediation\b/accreditation/g -s/\baccredidation\b/accreditation/g -s/\baccross\b/across/g -s/\baccussed\b/accused/g -s/\bacedemic\b/academic/g -s/\bacheive\b/achieve/g -s/\bacheived\b/achieved/g -s/\bacheivement\b/achievement/g -s/\bacheivements\b/achievements/g -s/\bacheives\b/achieves/g -s/\bacheiving\b/achieving/g -s/\bacheivment\b/achievement/g -s/\bacheivments\b/achievements/g -s/\bachievment\b/achievement/g -s/\bachievments\b/achievements/g -s/\bachivement\b/achievement/g -s/\bachivements\b/achievements/g -s/\backnowldeged\b/acknowledged/g -s/\backnowledgeing\b/acknowledging/g -s/\bacommodate\b/accommodate/g -s/\bacomplish\b/accomplish/g -s/\bacomplished\b/accomplished/g -s/\bacomplishment\b/accomplishment/g -s/\bacomplishments\b/accomplishments/g -s/\bacording\b/according/g -s/\bacordingly\b/accordingly/g -s/\bacquaintence\b/acquaintance/g -s/\bacquaintences\b/acquaintances/g -s/\bacquiantence\b/acquaintance/g -s/\bacquiantences\b/acquaintances/g -s/\bacquited\b/acquitted/g -s/\bactivites\b/activities/g -s/\bactivly\b/actively/g -s/\bactualy\b/actually/g -s/\bacuracy\b/accuracy/g -s/\bacused\b/accused/g -s/\bacustom\b/accustom/g -s/\bacustommed\b/accustomed/g -s/\badavanced\b/advanced/g -s/\badbandon\b/abandon/g -s/\baddional\b/additional/g -s/\baddionally\b/additionally/g -s/\badditinally\b/additionally/g -s/\badditionaly\b/additionally/g -s/\badditonal\b/additional/g -s/\badditonally\b/additionally/g -s/\baddmission\b/admission/g -s/\baddopt\b/adopt/g -s/\baddopted\b/adopted/g -s/\baddoptive\b/adoptive/g -s/\baddresable\b/addressable/g -s/\baddresed\b/addressed/g -s/\baddresing\b/addressing/g -s/\baddressess\b/addresses/g -s/\baddtion\b/addition/g -s/\baddtional\b/additional/g -s/\badecuate\b/adequate/g -s/\badequit\b/adequate/g -s/\badhearing\b/adhering/g -s/\badherance\b/adherence/g -s/\badmendment\b/amendment/g -s/\badmininistrative\b/administrative/g -s/\badminstered\b/administered/g -s/\badminstrate\b/administrate/g -s/\badminstration\b/administration/g -s/\badminstrative\b/administrative/g -s/\badminstrator\b/administrator/g -s/\badmissability\b/admissibility/g -s/\badmissable\b/admissible/g -s/\badmited\b/admitted/g -s/\badmitedly\b/admittedly/g -s/\badn\b/and/g -s/\badolecent\b/adolescent/g -s/\badquire\b/acquire/g -s/\badquired\b/acquired/g -s/\badquires\b/acquires/g -s/\badquiring\b/acquiring/g -s/\badres\b/address/g -s/\badresable\b/addressable/g -s/\badresing\b/addressing/g -s/\badress\b/address/g -s/\badressable\b/addressable/g -s/\badressed\b/addressed/g -s/\badventrous\b/adventurous/g -s/\badvertisment\b/advertisement/g -s/\badvertisments\b/advertisements/g -s/\badvesary\b/adversary/g -s/\badviced\b/advised/g -s/\baeriel\b/aerial/g -s/\baeriels\b/aerials/g -s/\bafair\b/affair/g -s/\bafficianados\b/aficionados/g -s/\bafficionado\b/aficionado/g -s/\bafficionados\b/aficionados/g -s/\baffilate\b/affiliate/g -s/\baffilliate\b/affiliate/g -s/\baforememtioned\b/aforementioned/g -s/\bagainnst\b/against/g -s/\bagains\b/against/g -s/\bagaisnt\b/against/g -s/\baganist\b/against/g -s/\baggaravates\b/aggravates/g -s/\baggreed\b/agreed/g -s/\baggreement\b/agreement/g -s/\baggregious\b/egregious/g -s/\baggresive\b/aggressive/g -s/\bagian\b/again/g -s/\bagianst\b/against/g -s/\bagin\b/again/g -s/\baginst\b/against/g -s/\bagravate\b/aggravate/g -s/\bagre\b/agree/g -s/\bagred\b/agreed/g -s/\bagreeement\b/agreement/g -s/\bagreemnt\b/agreement/g -s/\bagregate\b/aggregate/g -s/\bagregates\b/aggregates/g -s/\bagreing\b/agreeing/g -s/\bagression\b/aggression/g -s/\bagressive\b/aggressive/g -s/\bagressively\b/aggressively/g -s/\bagressor\b/aggressor/g -s/\bagricultue\b/agriculture/g -s/\bagriculure\b/agriculture/g -s/\bagricuture\b/agriculture/g -s/\bagrieved\b/aggrieved/g -s/\bahev\b/have/g -s/\bahppen\b/happen/g -s/\bahve\b/have/g -s/\baicraft\b/aircraft/g -s/\baiport\b/airport/g -s/\bairbourne\b/airborne/g -s/\baircaft\b/aircraft/g -s/\baircrafts\b/aircraft/g -s/\baircrafts'\b/aircraft's/g -s/\bairporta\b/airports/g -s/\bairrcraft\b/aircraft/g -s/\baisian\b/asian/g -s/\balbiet\b/albeit/g -s/\balchohol\b/alcohol/g -s/\balchoholic\b/alcoholic/g -s/\balchol\b/alcohol/g -s/\balcholic\b/alcoholic/g -s/\balcohal\b/alcohol/g -s/\balcoholical\b/alcoholic/g -s/\baledge\b/allege/g -s/\baledged\b/alleged/g -s/\baledges\b/alleges/g -s/\balege\b/allege/g -s/\baleged\b/alleged/g -s/\balegience\b/allegiance/g -s/\balgebraical\b/algebraic/g -s/\balgorhitms\b/algorithms/g -s/\balgoritm\b/algorithm/g -s/\balgoritms\b/algorithms/g -s/\balientating\b/alienating/g -s/\balledge\b/allege/g -s/\balledged\b/alleged/g -s/\balledgedly\b/allegedly/g -s/\balledges\b/alleges/g -s/\ballegedely\b/allegedly/g -s/\ballegedy\b/allegedly/g -s/\ballegely\b/allegedly/g -s/\ballegence\b/allegiance/g -s/\ballegience\b/allegiance/g -s/\ballign\b/align/g -s/\balligned\b/aligned/g -s/\balliviate\b/alleviate/g -s/\ballopone\b/allophone/g -s/\ballopones\b/allophones/g -s/\ballready\b/already/g -s/\ballthough\b/although/g -s/\balltime\b/all-time/g -s/\balltogether\b/altogether/g -s/\balmsot\b/almost/g -s/\balochol\b/alcohol/g -s/\balomst\b/almost/g -s/\balotted\b/allotted/g -s/\balowed\b/allowed/g -s/\balowing\b/allowing/g -s/\balreayd\b/already/g -s/\balse\b/else/g -s/\balsot\b/also/g -s/\balternitives\b/alternatives/g -s/\balthought\b/although/g -s/\baltough\b/although/g -s/\balwasy\b/always/g -s/\balwyas\b/always/g -s/\bamalgomated\b/amalgamated/g -s/\bamatuer\b/amateur/g -s/\bamendmant\b/amendment/g -s/\bAmercia\b/America/g -s/\bamerliorate\b/ameliorate/g -s/\bamke\b/make/g -s/\bamking\b/making/g -s/\bammend\b/amend/g -s/\bammended\b/amended/g -s/\bammendment\b/amendment/g -s/\bammendments\b/amendments/g -s/\bammount\b/amount/g -s/\bammused\b/amused/g -s/\bamoung\b/among/g -s/\bamoungst\b/amongst/g -s/\bamung\b/among/g -s/\bamunition\b/ammunition/g -s/\banalagous\b/analogous/g -s/\banalitic\b/analytic/g -s/\banalogeous\b/analogous/g -s/\banarchim\b/anarchism/g -s/\banarchistm\b/anarchism/g -s/\banbd\b/and/g -s/\bancestory\b/ancestry/g -s/\bancilliary\b/ancillary/g -s/\bandd\b/and/g -s/\bandrogenous\b/androgynous/g -s/\bandrogeny\b/androgyny/g -s/\banihilation\b/annihilation/g -s/\baniversary\b/anniversary/g -s/\bannoint\b/anoint/g -s/\bannointed\b/anointed/g -s/\bannointing\b/anointing/g -s/\bannoints\b/anoints/g -s/\bannouced\b/announced/g -s/\bannualy\b/annually/g -s/\bannuled\b/annulled/g -s/\banohter\b/another/g -s/\banomolies\b/anomalies/g -s/\banomolous\b/anomalous/g -s/\banomoly\b/anomaly/g -s/\banonimity\b/anonymity/g -s/\banounced\b/announced/g -s/\banouncement\b/announcement/g -s/\bansalisation\b/nasalisation/g -s/\bansalization\b/nasalization/g -s/\bansestors\b/ancestors/g -s/\bantartic\b/antarctic/g -s/\banthromorphization\b/anthropomorphization/g -s/\banthropolgist\b/anthropologist/g -s/\banthropolgy\b/anthropology/g -s/\bantiapartheid\b/anti-apartheid/g -s/\banual\b/annual/g -s/\banulled\b/annulled/g -s/\banwsered\b/answered/g -s/\banyhwere\b/anywhere/g -s/\banyother\b/any other/g -s/\banytying\b/anything/g -s/\baparent\b/apparent/g -s/\baparment\b/apartment/g -s/\baplication\b/application/g -s/\baplied\b/applied/g -s/\bapolegetics\b/apologetics/g -s/\bapparant\b/apparent/g -s/\bapparantly\b/apparently/g -s/\bappart\b/apart/g -s/\bappartment\b/apartment/g -s/\bappartments\b/apartments/g -s/\bappeareance\b/appearance/g -s/\bappearence\b/appearance/g -s/\bappearences\b/appearances/g -s/\bapperance\b/appearance/g -s/\bapperances\b/appearances/g -s/\bappereance\b/appearance/g -s/\bappereances\b/appearances/g -s/\bapplicaiton\b/application/g -s/\bapplicaitons\b/applications/g -s/\bappologies\b/apologies/g -s/\bappology\b/apology/g -s/\bapprearance\b/appearance/g -s/\bapprieciate\b/appreciate/g -s/\bapproachs\b/approaches/g -s/\bappropiate\b/appropriate/g -s/\bappropraite\b/appropriate/g -s/\bappropropiate\b/appropriate/g -s/\bapproproximate\b/approximate/g -s/\bapproxamately\b/approximately/g -s/\bapproxiately\b/approximately/g -s/\bapproximitely\b/approximately/g -s/\baprehensive\b/apprehensive/g -s/\bapropriate\b/appropriate/g -s/\baproval\b/approval/g -s/\baproximate\b/approximate/g -s/\baproximately\b/approximately/g -s/\baquaduct\b/aqueduct/g -s/\baquaintance\b/acquaintance/g -s/\baquainted\b/acquainted/g -s/\baquiantance\b/acquaintance/g -s/\baquire\b/acquire/g -s/\baquired\b/acquired/g -s/\baquiring\b/acquiring/g -s/\baquisition\b/acquisition/g -s/\baquitted\b/acquitted/g -s/\baranged\b/arranged/g -s/\barangement\b/arrangement/g -s/\barbitarily\b/arbitrarily/g -s/\barbitary\b/arbitrary/g -s/\barchaelogical\b/archaeological/g -s/\barchaelogists\b/archaeologists/g -s/\barchaelogy\b/archaeology/g -s/\barchetect\b/architect/g -s/\barchetects\b/architects/g -s/\barchetectural\b/architectural/g -s/\barchetecturally\b/architecturally/g -s/\barchetecture\b/architecture/g -s/\barchiac\b/archaic/g -s/\barchictect\b/architect/g -s/\barchimedian\b/archimedean/g -s/\barchitecht\b/architect/g -s/\barchitechturally\b/architecturally/g -s/\barchitechture\b/architecture/g -s/\barchitechtures\b/architectures/g -s/\barchitectual\b/architectural/g -s/\barchtype\b/archetype/g -s/\barchtypes\b/archetypes/g -s/\baready\b/already/g -s/\bareodynamics\b/aerodynamics/g -s/\bargubly\b/arguably/g -s/\barguement\b/argument/g -s/\barguements\b/arguments/g -s/\barised\b/arose/g -s/\barival\b/arrival/g -s/\barmamant\b/armament/g -s/\barmistace\b/armistice/g -s/\barogant\b/arrogant/g -s/\barogent\b/arrogant/g -s/\baroud\b/around/g -s/\barrangment\b/arrangement/g -s/\barrangments\b/arrangements/g -s/\barrengement\b/arrangement/g -s/\barrengements\b/arrangements/g -s/\barround\b/around/g -s/\bartcile\b/article/g -s/\bartical\b/article/g -s/\bartice\b/article/g -s/\barticel\b/article/g -s/\bartifical\b/artificial/g -s/\bartifically\b/artificially/g -s/\bartillary\b/artillery/g -s/\barund\b/around/g -s/\basetic\b/ascetic/g -s/\basfar\b/as far/g -s/\basign\b/assign/g -s/\baslo\b/also/g -s/\basociated\b/associated/g -s/\basorbed\b/absorbed/g -s/\basphyxation\b/asphyxiation/g -s/\bassasin\b/assassin/g -s/\bassasinate\b/assassinate/g -s/\bassasinated\b/assassinated/g -s/\bassasinates\b/assassinates/g -s/\bassasination\b/assassination/g -s/\bassasinations\b/assassinations/g -s/\bassasined\b/assassinated/g -s/\bassasins\b/assassins/g -s/\bassassintation\b/assassination/g -s/\bassemple\b/assemble/g -s/\bassertation\b/assertion/g -s/\basside\b/aside/g -s/\bassisnate\b/assassinate/g -s/\bassit\b/assist/g -s/\bassitant\b/assistant/g -s/\bassocation\b/association/g -s/\bassoicate\b/associate/g -s/\bassoicated\b/associated/g -s/\bassoicates\b/associates/g -s/\bassosication\b/assassination/g -s/\basssassans\b/assassins/g -s/\bassualt\b/assault/g -s/\bassualted\b/assaulted/g -s/\bassymetric\b/asymmetric/g -s/\bassymetrical\b/asymmetrical/g -s/\basteriod\b/asteroid/g -s/\basthetic\b/aesthetic/g -s/\basthetical\b/aesthetical/g -s/\basthetically\b/aesthetically/g -s/\basume\b/assume/g -s/\baswell\b/as well/g -s/\batain\b/attain/g -s/\batempting\b/attempting/g -s/\batheistical\b/atheistic/g -s/\bathenean\b/athenian/g -s/\batheneans\b/athenians/g -s/\bathiesm\b/atheism/g -s/\bathiest\b/atheist/g -s/\batorney\b/attorney/g -s/\batribute\b/attribute/g -s/\batributed\b/attributed/g -s/\batributes\b/attributes/g -s/\battemp\b/attempt/g -s/\battemped\b/attempted/g -s/\battemt\b/attempt/g -s/\battemted\b/attempted/g -s/\battemting\b/attempting/g -s/\battemts\b/attempts/g -s/\battendence\b/attendance/g -s/\battendent\b/attendant/g -s/\battendents\b/attendants/g -s/\battened\b/attended/g -s/\battension\b/attention/g -s/\battitide\b/attitude/g -s/\battributred\b/attributed/g -s/\battrocities\b/atrocities/g -s/\baudeince\b/audience/g -s/\bauromated\b/automated/g -s/\baustrailia\b/Australia/g -s/\baustrailian\b/Australian/g -s/\bauther\b/author/g -s/\bauthobiographic\b/autobiographic/g -s/\bauthobiography\b/autobiography/g -s/\bauthorative\b/authoritative/g -s/\bauthorites\b/authorities/g -s/\bauthorithy\b/authority/g -s/\bauthoritiers\b/authorities/g -s/\bauthoritive\b/authoritative/g -s/\bauthrorities\b/authorities/g -s/\bautochtonous\b/autochthonous/g -s/\bautoctonous\b/autochthonous/g -s/\bautomaticly\b/automatically/g -s/\bautomibile\b/automobile/g -s/\bautomonomous\b/autonomous/g -s/\bautor\b/author/g -s/\bautority\b/authority/g -s/\bauxilary\b/auxiliary/g -s/\bauxillaries\b/auxiliaries/g -s/\bauxillary\b/auxiliary/g -s/\bauxilliaries\b/auxiliaries/g -s/\bauxilliary\b/auxiliary/g -s/\bavailabe\b/available/g -s/\bavailablity\b/availability/g -s/\bavailaible\b/available/g -s/\bavailble\b/available/g -s/\bavailiable\b/available/g -s/\bavailible\b/available/g -s/\bavalable\b/available/g -s/\bavalance\b/avalanche/g -s/\bavaliable\b/available/g -s/\bavation\b/aviation/g -s/\bavengence\b/a vengeance/g -s/\baverageed\b/averaged/g -s/\bavilable\b/available/g -s/\bawared\b/awarded/g -s/\bawya\b/away/g -s/\bbaceause\b/because/g -s/\bbackgorund\b/background/g -s/\bbackrounds\b/backgrounds/g -s/\bbakc\b/back/g -s/\bbanannas\b/bananas/g -s/\bbandwith\b/bandwidth/g -s/\bbankrupcy\b/bankruptcy/g -s/\bbanruptcy\b/bankruptcy/g -s/\bbasicaly\b/basically/g -s/\bbasicly\b/basically/g -s/\bbcak\b/back/g -s/\bbeachead\b/beachhead/g -s/\bbeacuse\b/because/g -s/\bbeastiality\b/bestiality/g -s/\bbeatiful\b/beautiful/g -s/\bbeaurocracy\b/bureaucracy/g -s/\bbeaurocratic\b/bureaucratic/g -s/\bbeautyfull\b/beautiful/g -s/\bbecamae\b/became/g -s/\bbecasue\b/because/g -s/\bbeccause\b/because/g -s/\bbecomeing\b/becoming/g -s/\bbecomming\b/becoming/g -s/\bbecouse\b/because/g -s/\bbecuase\b/because/g -s/\bbedore\b/before/g -s/\bbeeing\b/being/g -s/\bbefoer\b/before/g -s/\bbegginer\b/beginner/g -s/\bbegginers\b/beginners/g -s/\bbeggining\b/beginning/g -s/\bbegginings\b/beginnings/g -s/\bbeggins\b/begins/g -s/\bbegining\b/beginning/g -s/\bbeginnig\b/beginning/g -s/\bbeleagured\b/beleaguered/g -s/\bbeleif\b/belief/g -s/\bbeleive\b/believe/g -s/\bbeleived\b/believed/g -s/\bbeleives\b/believes/g -s/\bbeleiving\b/believing/g -s/\bbeligum\b/belgium/g -s/\bbelive\b/believe/g -s/\bbelligerant\b/belligerent/g -s/\bbellweather\b/bellwether/g -s/\bbemusemnt\b/bemusement/g -s/\bbeneficary\b/beneficiary/g -s/\bbeng\b/being/g -s/\bbenificial\b/beneficial/g -s/\bbenifit\b/benefit/g -s/\bbenifits\b/benefits/g -s/\bbergamont\b/bergamot/g -s/\bBernouilli\b/Bernoulli/g -s/\bbeseige\b/besiege/g -s/\bbeseiged\b/besieged/g -s/\bbeseiging\b/besieging/g -s/\bbeteen\b/between/g -s/\bbetwen\b/between/g -s/\bbeween\b/between/g -s/\bbewteen\b/between/g -s/\bbeyound\b/beyond/g -s/\bbigining\b/beginning/g -s/\bbiginning\b/beginning/g -s/\bbilateraly\b/bilaterally/g -s/\bbillingualism\b/bilingualism/g -s/\bbinominal\b/binomial/g -s/\bbizzare\b/bizarre/g -s/\bblaim\b/blame/g -s/\bblaimed\b/blamed/g -s/\bblessure\b/blessing/g -s/\bBlitzkreig\b/Blitzkrieg/g -s/\bbodydbuilder\b/bodybuilder/g -s/\bbombardement\b/bombardment/g -s/\bbombarment\b/bombardment/g -s/\bbondary\b/boundary/g -s/\bBonnano\b/Bonanno/g -s/\bboook\b/book/g -s/\bborke\b/broke/g -s/\bboundry\b/boundary/g -s/\bbouyancy\b/buoyancy/g -s/\bbouyant\b/buoyant/g -s/\bboyant\b/buoyant/g -s/\bbradcast\b/broadcast/g -s/\bBrasillian\b/Brazilian/g -s/\bbreakthough\b/breakthrough/g -s/\bbreakthroughts\b/breakthroughs/g -s/\bbreif\b/brief/g -s/\bbreifly\b/briefly/g -s/\bbrethen\b/brethren/g -s/\bbretheren\b/brethren/g -s/\bbriliant\b/brilliant/g -s/\bbrillant\b/brilliant/g -s/\bbrimestone\b/brimstone/g -s/\bBritian\b/Britain/g -s/\bBrittish\b/British/g -s/\bbroacasted\b/broadcast/g -s/\bbroadacasting\b/broadcasting/g -s/\bbroady\b/broadly/g -s/\bBuddah\b/Buddha/g -s/\bBuddist\b/Buddhist/g -s/\bbuisness\b/business/g -s/\bbuisnessman\b/businessman/g -s/\bbuoancy\b/buoyancy/g -s/\bburried\b/buried/g -s/\bbusines\b/business/g -s/\bbusness\b/business/g -s/\bbussiness\b/business/g -s/\bcaculater\b/calculator/g -s/\bcacuses\b/caucuses/g -s/\bcahracters\b/characters/g -s/\bcalaber\b/caliber/g -s/\bcalculater\b/calculator/g -s/\bcalculs\b/calculus/g -s/\bcalenders\b/calendars/g -s/\bcaligraphy\b/calligraphy/g -s/\bcaluclate\b/calculate/g -s/\bcaluclated\b/calculated/g -s/\bcaluculate\b/calculate/g -s/\bcaluculated\b/calculated/g -s/\bcalulate\b/calculate/g -s/\bcalulated\b/calculated/g -s/\bcalulater\b/calculator/g -s/\bCambrige\b/Cambridge/g -s/\bcamoflage\b/camouflage/g -s/\bcampagin\b/campaign/g -s/\bcampain\b/campaign/g -s/\bcampains\b/campaigns/g -s/\bcandadate\b/candidate/g -s/\bcandiate\b/candidate/g -s/\bcandidiate\b/candidate/g -s/\bcannister\b/canister/g -s/\bcannisters\b/canisters/g -s/\bcannnot\b/cannot/g -s/\bcan not\b/cannot/g -s/\bcannonical\b/canonical/g -s/\bcannotation\b/connotation/g -s/\bcannotations\b/connotations/g -s/\bcaost\b/coast/g -s/\bcaperbility\b/capability/g -s/\bCapetown\b/Cape Town/g -s/\bcapible\b/capable/g -s/\bcaptial\b/capital/g -s/\bcaptued\b/captured/g -s/\bcapturd\b/captured/g -s/\bcarachter\b/character/g -s/\bcaracterized\b/characterized/g -s/\bcarefull\b/careful/g -s/\bcareing\b/caring/g -s/\bcarismatic\b/charismatic/g -s/\bCarmalite\b/Carmelite/g -s/\bCarnagie\b/Carnegie/g -s/\bCarnagie-Mellon\b/Carnegie-Mellon/g -s/\bCarnigie\b/Carnegie/g -s/\bCarnigie-Mellon\b/Carnegie-Mellon/g -s/\bcarreer\b/career/g -s/\bcarrers\b/careers/g -s/\bCarribbean\b/Caribbean/g -s/\bCarribean\b/Caribbean/g -s/\bcarryng\b/carrying/g -s/\bcartdridge\b/cartridge/g -s/\bCarthagian\b/Carthaginian/g -s/\bcarthographer\b/cartographer/g -s/\bcartilege\b/cartilage/g -s/\bcartilidge\b/cartilage/g -s/\bcartrige\b/cartridge/g -s/\bcasette\b/cassette/g -s/\bcasion\b/caisson/g -s/\bcassawory\b/cassowary/g -s/\bcassowarry\b/cassowary/g -s/\bcasue\b/cause/g -s/\bcasued\b/caused/g -s/\bcasues\b/causes/g -s/\bcasuing\b/causing/g -s/\bcasulaties\b/casualties/g -s/\bcasulaty\b/casualty/g -s/\bcatagories\b/categories/g -s/\bcatagorized\b/categorized/g -s/\bcatagory\b/category/g -s/\bcatapillar\b/caterpillar/g -s/\bcatapillars\b/caterpillars/g -s/\bcatapiller\b/caterpillar/g -s/\bcatapillers\b/caterpillars/g -s/\bcatepillar\b/caterpillar/g -s/\bcatepillars\b/caterpillars/g -s/\bcatergorize\b/categorize/g -s/\bcatergorized\b/categorized/g -s/\bcaterpilar\b/caterpillar/g -s/\bcaterpilars\b/caterpillars/g -s/\bcaterpiller\b/caterpillar/g -s/\bcaterpillers\b/caterpillars/g -s/\bcathlic\b/catholic/g -s/\bcatholocism\b/catholicism/g -s/\bcatterpilar\b/caterpillar/g -s/\bcatterpilars\b/caterpillars/g -s/\bcatterpillar\b/caterpillar/g -s/\bcatterpillars\b/caterpillars/g -s/\bcattleship\b/battleship/g -s/\bcausalities\b/casualties/g -s/\bCeasar\b/Caesar/g -s/\bCelcius\b/Celsius/g -s/\bcellpading\b/cellpadding/g -s/\bcementary\b/cemetery/g -s/\bcemetarey\b/cemetery/g -s/\bcemetaries\b/cemeteries/g -s/\bcemetary\b/cemetery/g -s/\bcencus\b/census/g -s/\bcententenial\b/centennial/g -s/\bcentruies\b/centuries/g -s/\bcentruy\b/century/g -s/\bcentuties\b/centuries/g -s/\bcentuty\b/century/g -s/\bcerimonial\b/ceremonial/g -s/\bcerimonies\b/ceremonies/g -s/\bcerimonious\b/ceremonious/g -s/\bcerimony\b/ceremony/g -s/\bceromony\b/ceremony/g -s/\bcertainity\b/certainty/g -s/\bcertian\b/certain/g -s/\bchalenging\b/challenging/g -s/\bchallange\b/challenge/g -s/\bchallanged\b/challenged/g -s/\bchallege\b/challenge/g -s/\bChampange\b/Champagne/g -s/\bchangable\b/changeable/g -s/\bcharachter\b/character/g -s/\bcharachters\b/characters/g -s/\bcharactersistic\b/characteristic/g -s/\bcharactor\b/character/g -s/\bcharactors\b/characters/g -s/\bcharasmatic\b/charismatic/g -s/\bcharaterized\b/characterized/g -s/\bchariman\b/chairman/g -s/\bcharistics\b/characteristics/g -s/\bcheif\b/chief/g -s/\bcheifs\b/chiefs/g -s/\bchemcial\b/chemical/g -s/\bchemcially\b/chemically/g -s/\bchemestry\b/chemistry/g -s/\bchemicaly\b/chemically/g -s/\bchildbird\b/childbirth/g -s/\bchilden\b/children/g -s/\bchoclate\b/chocolate/g -s/\bchoosen\b/chosen/g -s/\bchracter\b/character/g -s/\bchuch\b/church/g -s/\bchurchs\b/churches/g -s/\bCincinatti\b/Cincinnati/g -s/\bCincinnatti\b/Cincinnati/g -s/\bcirculaton\b/circulation/g -s/\bcircumsicion\b/circumcision/g -s/\bcircut\b/circuit/g -s/\bciricuit\b/circuit/g -s/\bciriculum\b/curriculum/g -s/\bcivillian\b/civilian/g -s/\bclaer\b/clear/g -s/\bclaerer\b/clearer/g -s/\bclaerly\b/clearly/g -s/\bclaimes\b/claims/g -s/\bclas\b/class/g -s/\bclasic\b/classic/g -s/\bclasical\b/classical/g -s/\bclasically\b/classically/g -s/\bcleareance\b/clearance/g -s/\bclincial\b/clinical/g -s/\bclinicaly\b/clinically/g -s/\bcmo\b/com/g -s/\bcmoputer\b/computer/g -s/\bco-incided\b/coincided/g -s/\bCoca Cola\b/Coca-Cola/g -s/\bcoctail\b/cocktail/g -s/\bcoform\b/conform/g -s/\bcognizent\b/cognizant/g -s/\bcoincedentally\b/coincidentally/g -s/\bcolaborations\b/collaborations/g -s/\bcolateral\b/collateral/g -s/\bcolelctive\b/collective/g -s/\bcollaberative\b/collaborative/g -s/\bcollecton\b/collection/g -s/\bcollegue\b/colleague/g -s/\bcollegues\b/colleagues/g -s/\bcollonade\b/colonnade/g -s/\bcollonies\b/colonies/g -s/\bcollony\b/colony/g -s/\bcollosal\b/colossal/g -s/\bcolonizators\b/colonizers/g -s/\bcomando\b/commando/g -s/\bcomandos\b/commandos/g -s/\bcomany\b/company/g -s/\bcomapany\b/company/g -s/\bcomback\b/comeback/g -s/\bcombanations\b/combinations/g -s/\bcombinatins\b/combinations/g -s/\bcombusion\b/combustion/g -s/\bcomdemnation\b/condemnation/g -s/\bcomemmorates\b/commemorates/g -s/\bcomemoretion\b/commemoration/g -s/\bcomision\b/commission/g -s/\bcomisioned\b/commissioned/g -s/\bcomisioner\b/commissioner/g -s/\bcomisioning\b/commissioning/g -s/\bcomisions\b/commissions/g -s/\bcomission\b/commission/g -s/\bcomissioned\b/commissioned/g -s/\bcomissioner\b/commissioner/g -s/\bcomissioning\b/commissioning/g -s/\bcomissions\b/commissions/g -s/\bcomited\b/committed/g -s/\bcomiting\b/committing/g -s/\bcomitted\b/committed/g -s/\bcomittee\b/committee/g -s/\bcomitting\b/committing/g -s/\bcommandoes\b/commandos/g -s/\bcommedic\b/comedic/g -s/\bcommemerative\b/commemorative/g -s/\bcommemmorate\b/commemorate/g -s/\bcommemmorating\b/commemorating/g -s/\bcommerical\b/commercial/g -s/\bcommerically\b/commercially/g -s/\bcommericial\b/commercial/g -s/\bcommericially\b/commercially/g -s/\bcommerorative\b/commemorative/g -s/\bcomming\b/coming/g -s/\bcomminication\b/communication/g -s/\bcommision\b/commission/g -s/\bcommisioned\b/commissioned/g -s/\bcommisioner\b/commissioner/g -s/\bcommisioning\b/commissioning/g -s/\bcommisions\b/commissions/g -s/\bcommited\b/committed/g -s/\bcommitee\b/committee/g -s/\bcommiting\b/committing/g -s/\bcommitte\b/committee/g -s/\bcommittment\b/commitment/g -s/\bcommittments\b/commitments/g -s/\bcommmemorated\b/commemorated/g -s/\bcommongly\b/commonly/g -s/\bcommonweath\b/commonwealth/g -s/\bcommuications\b/communications/g -s/\bcommuinications\b/communications/g -s/\bcommunciation\b/communication/g -s/\bcommuniation\b/communication/g -s/\bcommunites\b/communities/g -s/\bcompability\b/compatibility/g -s/\bcomparision\b/comparison/g -s/\bcomparisions\b/comparisons/g -s/\bcomparitive\b/comparative/g -s/\bcomparitively\b/comparatively/g -s/\bcompatabilities\b/compatibilities/g -s/\bcompatability\b/compatibility/g -s/\bcompatable\b/compatible/g -s/\bcompatablities\b/compatibilities/g -s/\bcompatablity\b/compatibility/g -s/\bcompatiable\b/compatible/g -s/\bcompatiblities\b/compatibilities/g -s/\bcompatiblity\b/compatibility/g -s/\bcompeitions\b/competitions/g -s/\bcompensantion\b/compensation/g -s/\bcompetance\b/competence/g -s/\bcompetant\b/competent/g -s/\bcompetative\b/competitive/g -s/\bcompetitiion\b/competition/g -s/\bcompetive\b/competitive/g -s/\bcompetiveness\b/competitiveness/g -s/\bcomphrehensive\b/comprehensive/g -s/\bcompitent\b/competent/g -s/\bcompletedthe\b/completed the/g -s/\bcompletelyl\b/completely/g -s/\bcompletetion\b/completion/g -s/\bcomplier\b/compiler/g -s/\bcomponant\b/component/g -s/\bcomprable\b/comparable/g -s/\bcomprimise\b/compromise/g -s/\bcompulsary\b/compulsory/g -s/\bcompulsery\b/compulsory/g -s/\bcomputarized\b/computerized/g -s/\bconcensus\b/consensus/g -s/\bconcider\b/consider/g -s/\bconcidered\b/considered/g -s/\bconcidering\b/considering/g -s/\bconciders\b/considers/g -s/\bconcieted\b/conceited/g -s/\bconcieved\b/conceived/g -s/\bconcious\b/conscious/g -s/\bconciously\b/consciously/g -s/\bconciousness\b/consciousness/g -s/\bcondamned\b/condemned/g -s/\bcondemmed\b/condemned/g -s/\bcondidtion\b/condition/g -s/\bcondidtions\b/conditions/g -s/\bconditionsof\b/conditions of/g -s/\bconected\b/connected/g -s/\bconection\b/connection/g -s/\bconesencus\b/consensus/g -s/\bconfidental\b/confidential/g -s/\bconfidentally\b/confidentially/g -s/\bconfids\b/confides/g -s/\bconfigureable\b/configurable/g -s/\bconfortable\b/comfortable/g -s/\bcongradulations\b/congratulations/g -s/\bcongresional\b/congressional/g -s/\bconived\b/connived/g -s/\bconjecutre\b/conjecture/g -s/\bconjuction\b/conjunction/g -s/\bConneticut\b/Connecticut/g -s/\bconotations\b/connotations/g -s/\bconquerd\b/conquered/g -s/\bconquerer\b/conqueror/g -s/\bconquerers\b/conquerors/g -s/\bconqured\b/conquered/g -s/\bconscent\b/consent/g -s/\bconsciouness\b/consciousness/g -s/\bconsdider\b/consider/g -s/\bconsdidered\b/considered/g -s/\bconsdiered\b/considered/g -s/\bconsectutive\b/consecutive/g -s/\bconsenquently\b/consequently/g -s/\bconsentrate\b/concentrate/g -s/\bconsentrated\b/concentrated/g -s/\bconsentrates\b/concentrates/g -s/\bconsept\b/concept/g -s/\bconsequentually\b/consequently/g -s/\bconsequeseces\b/consequences/g -s/\bconsern\b/concern/g -s/\bconserned\b/concerned/g -s/\bconserning\b/concerning/g -s/\bconservitive\b/conservative/g -s/\bconsiciousness\b/consciousness/g -s/\bconsicousness\b/consciousness/g -s/\bconsiderd\b/considered/g -s/\bconsideres\b/considered/g -s/\bconsious\b/conscious/g -s/\bconsistant\b/consistent/g -s/\bconsistantly\b/consistently/g -s/\bconsituencies\b/constituencies/g -s/\bconsituency\b/constituency/g -s/\bconsituted\b/constituted/g -s/\bconsitution\b/constitution/g -s/\bconsitutional\b/constitutional/g -s/\bconsolodate\b/consolidate/g -s/\bconsolodated\b/consolidated/g -s/\bconsonent\b/consonant/g -s/\bconsonents\b/consonants/g -s/\bconsorcium\b/consortium/g -s/\bconspiracys\b/conspiracies/g -s/\bconspiriator\b/conspirator/g -s/\bconstaints\b/constraints/g -s/\bconstanly\b/constantly/g -s/\bconstarnation\b/consternation/g -s/\bconstatn\b/constant/g -s/\bconstinually\b/continually/g -s/\bconstituant\b/constituent/g -s/\bconstituants\b/constituents/g -s/\bconstituion\b/constitution/g -s/\bconstituional\b/constitutional/g -s/\bconsttruction\b/construction/g -s/\bconstuction\b/construction/g -s/\bcontstruction\b/construction/g -s/\bconsulant\b/consultant/g -s/\bconsumate\b/consummate/g -s/\bconsumated\b/consummated/g -s/\bcontaiminate\b/contaminate/g -s/\bcontaines\b/contains/g -s/\bcontamporaries\b/contemporaries/g -s/\bcontamporary\b/contemporary/g -s/\bcontempoary\b/contemporary/g -s/\bcontemporaneus\b/contemporaneous/g -s/\bcontempory\b/contemporary/g -s/\bcontendor\b/contender/g -s/\bcontian\b/contain/g -s/\bcontians\b/contains/g -s/\bcontibute\b/contribute/g -s/\bcontibuted\b/contributed/g -s/\bcontibutes\b/contributes/g -s/\bcontigent\b/contingent/g -s/\bcontined\b/continued/g -s/\bcontinential\b/continental/g -s/\bcontinous\b/continuous/g -s/\bcontinously\b/continuously/g -s/\bcontinueing\b/continuing/g -s/\bcontravercial\b/controversial/g -s/\bcontraversy\b/controversy/g -s/\bcontributer\b/contributor/g -s/\bcontributers\b/contributors/g -s/\bcontritutions\b/contributions/g -s/\bcontroled\b/controlled/g -s/\bcontroling\b/controlling/g -s/\bcontroll\b/control/g -s/\bcontrolls\b/controls/g -s/\bcontrovercial\b/controversial/g -s/\bcontrovercy\b/controversy/g -s/\bcontroveries\b/controversies/g -s/\bcontroversal\b/controversial/g -s/\bcontroversey\b/controversy/g -s/\bcontrovertial\b/controversial/g -s/\bcontrovery\b/controversy/g -s/\bcontruction\b/construction/g -s/\bconveinent\b/convenient/g -s/\bconvenant\b/covenant/g -s/\bconvential\b/conventional/g -s/\bconvertables\b/convertibles/g -s/\bconvertion\b/conversion/g -s/\bconviced\b/convinced/g -s/\bconvienient\b/convenient/g -s/\bcoordiantion\b/coordination/g -s/\bcoorperations\b/corporations/g -s/\bcopmetitors\b/competitors/g -s/\bcoputer\b/computer/g -s/\bcopywrite\b/copyright/g -s/\bcoridal\b/cordial/g -s/\bcornmitted\b/committed/g -s/\bcorosion\b/corrosion/g -s/\bcorparate\b/corporate/g -s/\bcorperations\b/corporations/g -s/\bcorrecters\b/correctors/g -s/\bcorreponding\b/corresponding/g -s/\bcorreposding\b/corresponding/g -s/\bcorrespondant\b/correspondent/g -s/\bcorrespondants\b/correspondents/g -s/\bcorridoors\b/corridors/g -s/\bcorrispond\b/correspond/g -s/\bcorrispondant\b/correspondent/g -s/\bcorrispondants\b/correspondents/g -s/\bcorrisponded\b/corresponded/g -s/\bcorrisponding\b/corresponding/g -s/\bcorrisponds\b/corresponds/g -s/\bcostitution\b/constitution/g -s/\bcoucil\b/council/g -s/\bcounries\b/countries/g -s/\bcountains\b/contains/g -s/\bcountires\b/countries/g -s/\bcreaeted\b/created/g -s/\bcreche\b/crèche/g -s/\bcreedence\b/credence/g -s/\bcritereon\b/criterion/g -s/\bcriterias\b/criteria/g -s/\bcriticists\b/critics/g -s/\bcritisising\b/criticising/g -s/\bcritisism\b/criticism/g -s/\bcritisisms\b/criticisms/g -s/\bcritized\b/criticized/g -s/\bcritizing\b/criticizing/g -s/\bcrockodiles\b/crocodiles/g -s/\bcrowm\b/crown/g -s/\bcrtical\b/critical/g -s/\bcrticised\b/criticised/g -s/\bcrucifiction\b/crucifixion/g -s/\bcrusies\b/cruises/g -s/\bcrutial\b/crucial/g -s/\bcrystalisation\b/crystallisation/g -s/\bculiminating\b/culminating/g -s/\bcumulatative\b/cumulative/g -s/\bcurch\b/church/g -s/\bcurcuit\b/circuit/g -s/\bcurrenly\b/currently/g -s/\bcurriculem\b/curriculum/g -s/\bcxan\b/cyan/g -s/\bcyclinder\b/cylinder/g -s/\bdacquiri\b/daiquiri/g -s/\bdaed\b/dead/g -s/\bdalmation\b/dalmatian/g -s/\bdamenor\b/demeanor/g -s/\bdammage\b/damage/g -s/\bDardenelles\b/Dardanelles/g -s/\bdaugher\b/daughter/g -s/\bdebateable\b/debatable/g -s/\bdecendant\b/descendant/g -s/\bdecendants\b/descendants/g -s/\bdecendent\b/descendant/g -s/\bdecendents\b/descendants/g -s/\bdecideable\b/decidable/g -s/\bdecidely\b/decidedly/g -s/\bdecieved\b/deceived/g -s/\bdecison\b/decision/g -s/\bdecomissioned\b/decommissioned/g -s/\bdecomposit\b/decompose/g -s/\bdecomposited\b/decomposed/g -s/\bdecompositing\b/decomposing/g -s/\bdecomposits\b/decomposes/g -s/\bdecress\b/decrees/g -s/\bdecribe\b/describe/g -s/\bdecribed\b/described/g -s/\bdecribes\b/describes/g -s/\bdecribing\b/describing/g -s/\bdectect\b/detect/g -s/\bdefendent\b/defendant/g -s/\bdefendents\b/defendants/g -s/\bdeffensively\b/defensively/g -s/\bdeffine\b/define/g -s/\bdeffined\b/defined/g -s/\bdefinance\b/defiance/g -s/\bdefinate\b/definite/g -s/\bdefinately\b/definitely/g -s/\bdefinatly\b/definitely/g -s/\bdefinetly\b/definitely/g -s/\bdefinining\b/defining/g -s/\bdefinit\b/definite/g -s/\bdefinitly\b/definitely/g -s/\bdefiniton\b/definition/g -s/\bdefintion\b/definition/g -s/\bdegrate\b/degrade/g -s/\bdelagates\b/delegates/g -s/\bdelapidated\b/dilapidated/g -s/\bdelerious\b/delirious/g -s/\bdelevopment\b/development/g -s/\bdeliberatly\b/deliberately/g -s/\bdelusionally\b/delusively/g -s/\bdemenor\b/demeanor/g -s/\bdemographical\b/demographic/g -s/\bdemolision\b/demolition/g -s/\bdemorcracy\b/democracy/g -s/\bdemostration\b/demonstration/g -s/\bdenegrating\b/denigrating/g -s/\bdensly\b/densely/g -s/\bdeparment\b/department/g -s/\bdeparmental\b/departmental/g -s/\bdeparments\b/departments/g -s/\bdependance\b/dependence/g -s/\bdependancy\b/dependency/g -s/\bderiviated\b/derived/g -s/\bderivitive\b/derivative/g -s/\bderogitory\b/derogatory/g -s/\bdescendands\b/descendants/g -s/\bdescibed\b/described/g -s/\bdescision\b/decision/g -s/\bdescisions\b/decisions/g -s/\bdescriibes\b/describes/g -s/\bdescripters\b/descriptors/g -s/\bdescripton\b/description/g -s/\bdesctruction\b/destruction/g -s/\bdescuss\b/discuss/g -s/\bdesgined\b/designed/g -s/\bdeside\b/decide/g -s/\bdesigining\b/designing/g -s/\bdesinations\b/destinations/g -s/\bdesintegrated\b/disintegrated/g -s/\bdesintegration\b/disintegration/g -s/\bdesireable\b/desirable/g -s/\bdesitned\b/destined/g -s/\bdesktiop\b/desktop/g -s/\bdesorder\b/disorder/g -s/\bdesoriented\b/disoriented/g -s/\bdespict\b/depict/g -s/\bdespiration\b/desperation/g -s/\bdessicated\b/desiccated/g -s/\bdessigned\b/designed/g -s/\bdestablized\b/destabilized/g -s/\bdestory\b/destroy/g -s/\bdetailled\b/detailed/g -s/\bdetatched\b/detached/g -s/\bdeteoriated\b/deteriorated/g -s/\bdeteriate\b/deteriorate/g -s/\bdeterioriating\b/deteriorating/g -s/\bdeterminining\b/determining/g -s/\bdetremental\b/detrimental/g -s/\bdevasted\b/devastated/g -s/\bdevelope\b/develop/g -s/\bdevelopement\b/development/g -s/\bdevelopped\b/developed/g -s/\bdevelpment\b/development/g -s/\bdevels\b/delves/g -s/\bdevestated\b/devastated/g -s/\bdevestating\b/devastating/g -s/\bdevide\b/divide/g -s/\bdevided\b/divided/g -s/\bdevistating\b/devastating/g -s/\bdevolopement\b/development/g -s/\bdiablical\b/diabolical/g -s/\bdiamons\b/diamonds/g -s/\bdiaster\b/disaster/g -s/\bdichtomy\b/dichotomy/g -s/\bdiconnects\b/disconnects/g -s/\bdicover\b/discover/g -s/\bdicovered\b/discovered/g -s/\bdicovering\b/discovering/g -s/\bdicovers\b/discovers/g -s/\bdicovery\b/discovery/g -s/\bdictionarys\b/dictionaries/g -s/\bdicussed\b/discussed/g -s/\bdidnt\b/didn't/g -s/\bdieties\b/deities/g -s/\bdiety\b/deity/g -s/\bdiferent\b/different/g -s/\bdiferrent\b/different/g -s/\bdifferentiatiations\b/differentiations/g -s/\bdiffernt\b/different/g -s/\bdifficulity\b/difficulty/g -s/\bdiffrent\b/different/g -s/\bdificulties\b/difficulties/g -s/\bdificulty\b/difficulty/g -s/\bdimenions\b/dimensions/g -s/\bdimention\b/dimension/g -s/\bdimentional\b/dimensional/g -s/\bdimentions\b/dimensions/g -s/\bdimesnional\b/dimensional/g -s/\bdiminuitive\b/diminutive/g -s/\bdimunitive\b/diminutive/g -s/\bdiosese\b/diocese/g -s/\bdiphtong\b/diphthong/g -s/\bdiphtongs\b/diphthongs/g -s/\bdiplomancy\b/diplomacy/g -s/\bdipthong\b/diphthong/g -s/\bdipthongs\b/diphthongs/g -s/\bdirectoty\b/directory/g -s/\bdirived\b/derived/g -s/\bdisagreeed\b/disagreed/g -s/\bdisapeared\b/disappeared/g -s/\bdisapointing\b/disappointing/g -s/\bdisappearred\b/disappeared/g -s/\bdisaproval\b/disapproval/g -s/\bdisasterous\b/disastrous/g -s/\bdisatisfaction\b/dissatisfaction/g -s/\bdisatisfied\b/dissatisfied/g -s/\bdisatrous\b/disastrous/g -s/\bdiscontentment\b/discontent/g -s/\bdiscribe\b/describe/g -s/\bdiscribed\b/described/g -s/\bdiscribes\b/describes/g -s/\bdiscribing\b/describing/g -s/\bdisctinction\b/distinction/g -s/\bdisctinctive\b/distinctive/g -s/\bdisemination\b/dissemination/g -s/\bdisenchanged\b/disenchanted/g -s/\bdisiplined\b/disciplined/g -s/\bdisobediance\b/disobedience/g -s/\bdisobediant\b/disobedient/g -s/\bdisolved\b/dissolved/g -s/\bdisover\b/discover/g -s/\bdispair\b/despair/g -s/\bdisparingly\b/disparagingly/g -s/\bdispence\b/dispense/g -s/\bdispenced\b/dispensed/g -s/\bdispencing\b/dispensing/g -s/\bdispicable\b/despicable/g -s/\bdispite\b/despite/g -s/\bdispostion\b/disposition/g -s/\bdisproportiate\b/disproportionate/g -s/\bdisputandem\b/disputandum/g -s/\bdisricts\b/districts/g -s/\bdissagreement\b/disagreement/g -s/\bdissapear\b/disappear/g -s/\bdissapearance\b/disappearance/g -s/\bdissapeared\b/disappeared/g -s/\bdissapearing\b/disappearing/g -s/\bdissapears\b/disappears/g -s/\bdissappear\b/disappear/g -s/\bdissappears\b/disappears/g -s/\bdissappointed\b/disappointed/g -s/\bdissarray\b/disarray/g -s/\bdissobediance\b/disobedience/g -s/\bdissobediant\b/disobedient/g -s/\bdissobedience\b/disobedience/g -s/\bdissobedient\b/disobedient/g -s/\bdistiction\b/distinction/g -s/\bdistingish\b/distinguish/g -s/\bdistingished\b/distinguished/g -s/\bdistingishes\b/distinguishes/g -s/\bdistingishing\b/distinguishing/g -s/\bdistingquished\b/distinguished/g -s/\bdistrubution\b/distribution/g -s/\bdistruction\b/destruction/g -s/\bdistructive\b/destructive/g -s/\bditributed\b/distributed/g -s/\bdivice\b/device/g -s/\bdivinition\b/divination/g -s/\bdivison\b/division/g -s/\bdivisons\b/divisions/g -s/\bdum\b/dumb/g -s/\bdoccument\b/document/g -s/\bdoccumented\b/documented/g -s/\bdoccuments\b/documents/g -s/\bdocrines\b/doctrines/g -s/\bdoctines\b/doctrines/g -s/\bdocumenatry\b/documentary/g -s/\bdoens\b/does/g -s/\bdoesnt\b/doesn't/g -s/\bdoign\b/doing/g -s/\bdominaton\b/domination/g -s/\bdominent\b/dominant/g -s/\bdominiant\b/dominant/g -s/\bdonig\b/doing/g -s/\bdosen't\b/doesn't/g -s/\bdoulbe\b/double/g -s/\bdowloads\b/downloads/g -s/\bdramtic\b/dramatic/g -s/\bdraughtman\b/draughtsman/g -s/\bDravadian\b/Dravidian/g -s/\bdreasm\b/dreams/g -s/\bdriectly\b/directly/g -s/\bdrnik\b/drink/g -s/\bdruming\b/drumming/g -s/\bdrummless\b/drumless/g -s/\bdupicate\b/duplicate/g -s/\bdurig\b/during/g -s/\bdurring\b/during/g -s/\bduting\b/during/g -s/\bdyas\b/dryas/g -s/\beahc\b/each/g -s/\bealier\b/earlier/g -s/\bearlies\b/earliest/g -s/\bearnt\b/earned/g -s/\becclectic\b/eclectic/g -s/\beceonomy\b/economy/g -s/\becidious\b/deciduous/g -s/\beclispe\b/eclipse/g -s/\becomonic\b/economic/g -s/\bect\b/etc/g -s/\beearly\b/early/g -s/\befel\b/evil/g -s/\beffeciency\b/efficiency/g -s/\beffecient\b/efficient/g -s/\beffeciently\b/efficiently/g -s/\befficency\b/efficiency/g -s/\befficent\b/efficient/g -s/\befficently\b/efficiently/g -s/\beffulence\b/effluence/g -s/\beiter\b/either/g -s/\belction\b/election/g -s/\belectrial\b/electrical/g -s/\belectricly\b/electrically/g -s/\belectricty\b/electricity/g -s/\belementay\b/elementary/g -s/\beleminated\b/eliminated/g -s/\beleminating\b/eliminating/g -s/\beles\b/eels/g -s/\beletricity\b/electricity/g -s/\belicided\b/elicited/g -s/\beligable\b/eligible/g -s/\belimentary\b/elementary/g -s/\bellected\b/elected/g -s/\belphant\b/elephant/g -s/\bembarass\b/embarrass/g -s/\bembarassed\b/embarrassed/g -s/\bembarassing\b/embarrassing/g -s/\bembarassment\b/embarrassment/g -s/\bembargos\b/embargoes/g -s/\bembarras\b/embarrass/g -s/\bembarrased\b/embarrassed/g -s/\bembarrasing\b/embarrassing/g -s/\bembarrasment\b/embarrassment/g -s/\bembezelled\b/embezzled/g -s/\bemblamatic\b/emblematic/g -s/\beminate\b/emanate/g -s/\beminated\b/emanated/g -s/\bemision\b/emission/g -s/\bemited\b/emitted/g -s/\bemiting\b/emitting/g -s/\bemmediately\b/immediately/g -s/\bemminently\b/eminently/g -s/\bemmisaries\b/emissaries/g -s/\bemmisarries\b/emissaries/g -s/\bemmisarry\b/emissary/g -s/\bemmisary\b/emissary/g -s/\bemmision\b/emission/g -s/\bemmisions\b/emissions/g -s/\bemmited\b/emitted/g -s/\bemmiting\b/emitting/g -s/\bemmitted\b/emitted/g -s/\bemmitting\b/emitting/g -s/\bemnity\b/enmity/g -s/\bemperical\b/empirical/g -s/\bemphaised\b/emphasised/g -s/\bemphsis\b/emphasis/g -s/\bemphysyma\b/emphysema/g -s/\bemporer\b/emperor/g -s/\bemprisoned\b/imprisoned/g -s/\benameld\b/enameled/g -s/\benchancement\b/enhancement/g -s/\bencouraing\b/encouraging/g -s/\bencryptiion\b/encryption/g -s/\bencylopedia\b/encyclopedia/g -s/\bendevors\b/endeavors/g -s/\bendevour\b/endeavour/g -s/\bendig\b/ending/g -s/\bendolithes\b/endoliths/g -s/\benduce\b/induce/g -s/\bened\b/need/g -s/\benforceing\b/enforcing/g -s/\bengagment\b/engagement/g -s/\bengeneer\b/engineer/g -s/\bengeneering\b/engineering/g -s/\bengieneer\b/engineer/g -s/\bengieneers\b/engineers/g -s/\benlargment\b/enlargement/g -s/\benlargments\b/enlargements/g -s/\benourmous\b/enormous/g -s/\benourmously\b/enormously/g -s/\bensconsed\b/ensconced/g -s/\bentaglements\b/entanglements/g -s/\benteratinment\b/entertainment/g -s/\benthusiatic\b/enthusiastic/g -s/\bentitity\b/entity/g -s/\bentitlied\b/entitled/g -s/\bentrepeneur\b/entrepreneur/g -s/\bentrepeneurs\b/entrepreneurs/g -s/\benviorment\b/environment/g -s/\benviormental\b/environmental/g -s/\benviormentally\b/environmentally/g -s/\benviorments\b/environments/g -s/\benviornment\b/environment/g -s/\benviornmental\b/environmental/g -s/\benviornmentalist\b/environmentalist/g -s/\benviornmentally\b/environmentally/g -s/\benviornments\b/environments/g -s/\benviroment\b/environment/g -s/\benviromental\b/environmental/g -s/\benviromentalist\b/environmentalist/g -s/\benviromentally\b/environmentally/g -s/\benviroments\b/environments/g -s/\benvolutionary\b/evolutionary/g -s/\benvrionments\b/environments/g -s/\benxt\b/next/g -s/\bepidsodes\b/episodes/g -s/\bepsiode\b/episode/g -s/\bequialent\b/equivalent/g -s/\bequilibium\b/equilibrium/g -s/\bequilibrum\b/equilibrium/g -s/\bequiped\b/equipped/g -s/\bequippment\b/equipment/g -s/\bequitorial\b/equatorial/g -s/\bequivelant\b/equivalent/g -s/\bequivelent\b/equivalent/g -s/\bequivilant\b/equivalent/g -s/\bequivilent\b/equivalent/g -s/\bequivlalent\b/equivalent/g -s/\beratic\b/erratic/g -s/\beratically\b/erratically/g -s/\beraticly\b/erratically/g -s/\berrupted\b/erupted/g -s/\besential\b/essential/g -s/\besitmated\b/estimated/g -s/\besle\b/else/g -s/\bespecialy\b/especially/g -s/\bessencial\b/essential/g -s/\bessense\b/essence/g -s/\bessentail\b/essential/g -s/\bessentialy\b/essentially/g -s/\bessentual\b/essential/g -s/\bessesital\b/essential/g -s/\bestabishes\b/establishes/g -s/\bestablising\b/establishing/g -s/\bethnocentricm\b/ethnocentrism/g -s/\bEuropian\b/European/g -s/\bEuropians\b/Europeans/g -s/\bEurpean\b/European/g -s/\bEurpoean\b/European/g -s/\bevenhtually\b/eventually/g -s/\beventally\b/eventually/g -s/\beventhough\b/even though/g -s/\beventially\b/eventually/g -s/\beventualy\b/eventually/g -s/\beverthing\b/everything/g -s/\beverytime\b/every time/g -s/\beveryting\b/everything/g -s/\beveyr\b/every/g -s/\bevidentally\b/evidently/g -s/\bexagerate\b/exaggerate/g -s/\bexagerated\b/exaggerated/g -s/\bexagerates\b/exaggerates/g -s/\bexagerating\b/exaggerating/g -s/\bexagerrate\b/exaggerate/g -s/\bexagerrated\b/exaggerated/g -s/\bexagerrates\b/exaggerates/g -s/\bexagerrating\b/exaggerating/g -s/\bexaminated\b/examined/g -s/\bexampt\b/exempt/g -s/\bexapansion\b/expansion/g -s/\bexcact\b/exact/g -s/\bexcange\b/exchange/g -s/\bexcecute\b/execute/g -s/\bexcecuted\b/executed/g -s/\bexcecutes\b/executes/g -s/\bexcecuting\b/executing/g -s/\bexcecution\b/execution/g -s/\bexcedded\b/exceeded/g -s/\bexcelent\b/excellent/g -s/\bexcell\b/excel/g -s/\bexcellance\b/excellence/g -s/\bexcellant\b/excellent/g -s/\bexcells\b/excels/g -s/\bexcercise\b/exercise/g -s/\bexchanching\b/exchanging/g -s/\bexcisted\b/existed/g -s/\bexculsivly\b/exclusively/g -s/\bexecising\b/exercising/g -s/\bexection\b/execution/g -s/\bexectued\b/executed/g -s/\bexeedingly\b/exceedingly/g -s/\bexelent\b/excellent/g -s/\bexellent\b/excellent/g -s/\bexemple\b/example/g -s/\bexept\b/except/g -s/\bexeptional\b/exceptional/g -s/\bexerbate\b/exacerbate/g -s/\bexerbated\b/exacerbated/g -s/\bexerciese\b/exercises/g -s/\bexerpt\b/excerpt/g -s/\bexerpts\b/excerpts/g -s/\bexersize\b/exercise/g -s/\bexerternal\b/external/g -s/\bexhalted\b/exalted/g -s/\bexhibtion\b/exhibition/g -s/\bexibition\b/exhibition/g -s/\bexibitions\b/exhibitions/g -s/\bexicting\b/exciting/g -s/\bexinct\b/extinct/g -s/\bexistance\b/existence/g -s/\bexistant\b/existent/g -s/\bexistince\b/existence/g -s/\bexliled\b/exiled/g -s/\bexludes\b/excludes/g -s/\bexmaple\b/example/g -s/\bexonorate\b/exonerate/g -s/\bexoskelaton\b/exoskeleton/g -s/\bexpalin\b/explain/g -s/\bexpatriot\b/expatriate/g -s/\bexpeced\b/expected/g -s/\bexpecially\b/especially/g -s/\bexpeditonary\b/expeditionary/g -s/\bexpeiments\b/experiments/g -s/\bexpell\b/expel/g -s/\bexpells\b/expels/g -s/\bexperiance\b/experience/g -s/\bexperianced\b/experienced/g -s/\bexpiditions\b/expeditions/g -s/\bexpierence\b/experience/g -s/\bexplaination\b/explanation/g -s/\bexplaning\b/explaining/g -s/\bexplictly\b/explicitly/g -s/\bexploititive\b/exploitative/g -s/\bexplotation\b/exploitation/g -s/\bexpropiated\b/expropriated/g -s/\bexpropiation\b/expropriation/g -s/\bexressed\b/expressed/g -s/\bextemely\b/extremely/g -s/\bextention\b/extension/g -s/\bextentions\b/extensions/g -s/\bextered\b/exerted/g -s/\bextermist\b/extremist/g -s/\bextradiction\b/extradition/g -s/\bextraterrestial\b/extraterrestrial/g -s/\bextraterrestials\b/extraterrestrials/g -s/\bextravagent\b/extravagant/g -s/\bextrememly\b/extremely/g -s/\bextremeophile\b/extremophile/g -s/\bextremly\b/extremely/g -s/\bextrordinarily\b/extraordinarily/g -s/\bextrordinary\b/extraordinary/g -s/\bfaciliate\b/facilitate/g -s/\bfaciliated\b/facilitated/g -s/\bfaciliates\b/facilitates/g -s/\bfacilites\b/facilities/g -s/\bfacillitate\b/facilitate/g -s/\bfacinated\b/fascinated/g -s/\bfacist\b/fascist/g -s/\bfamiles\b/families/g -s/\bfamilliar\b/familiar/g -s/\bfamoust\b/famous/g -s/\bfanatism\b/fanaticism/g -s/\bFarenheit\b/Fahrenheit/g -s/\bfatc\b/fact/g -s/\bfaught\b/fought/g -s/\bfavoutrable\b/favourable/g -s/\bfeasable\b/feasible/g -s/\bFebuary\b/February/g -s/\bFeburary\b/February/g -s/\bfedreally\b/federally/g -s/\bfemminist\b/feminist/g -s/\bferomone\b/pheromone/g -s/\bfertily\b/fertility/g -s/\bfianite\b/finite/g -s/\bfianlly\b/finally/g -s/\bficticious\b/fictitious/g -s/\bfictious\b/fictitious/g -s/\bfidn\b/find/g -s/\bfiercly\b/fiercely/g -s/\bfightings\b/fighting/g -s/\bfiliament\b/filament/g -s/\bfimilies\b/families/g -s/\bfinacial\b/financial/g -s/\bfinaly\b/finally/g -s/\bfinancialy\b/financially/g -s/\bfirends\b/friends/g -s/\bfisionable\b/fissionable/g -s/\bflamable\b/flammable/g -s/\bflawess\b/flawless/g -s/\bFlemmish\b/Flemish/g -s/\bflorescent\b/fluorescent/g -s/\bflourescent\b/fluorescent/g -s/\bflourine\b/fluorine/g -s/\bfluorish\b/flourish/g -s/\bflourishment\b/flourishing/g -s/\bfollwoing\b/following/g -s/\bfolowing\b/following/g -s/\bfomed\b/formed/g -s/\bfonetic\b/phonetic/g -s/\bfontrier\b/fontier/g -s/\bfoootball\b/football/g -s/\bforbad\b/forbade/g -s/\bforbiden\b/forbidden/g -s/\bforeward\b/foreword/g -s/\bforfiet\b/forfeit/g -s/\bforhead\b/forehead/g -s/\bforiegn\b/foreign/g -s/\bFormalhaut\b/Fomalhaut/g -s/\bformallize\b/formalize/g -s/\bformallized\b/formalized/g -s/\bformelly\b/formerly/g -s/\bformidible\b/formidable/g -s/\bformost\b/foremost/g -s/\bforsaw\b/foresaw/g -s/\bforseeable\b/foreseeable/g -s/\bfortelling\b/foretelling/g -s/\bforunner\b/forerunner/g -s/\bfoucs\b/focus/g -s/\bfoudn\b/found/g -s/\bfougth\b/fought/g -s/\bfoundaries\b/foundries/g -s/\bfoundary\b/foundry/g -s/\bFoundland\b/Newfoundland/g -s/\bfourties\b/forties/g -s/\bfourty\b/forty/g -s/\bfouth\b/fourth/g -s/\bfoward\b/forward/g -s/\bFransiscan\b/Franciscan/g -s/\bFransiscans\b/Franciscans/g -s/\bfreind\b/friend/g -s/\bfreindly\b/friendly/g -s/\bfrequentily\b/frequently/g -s/\bfrome\b/from/g -s/\bfromed\b/formed/g -s/\bfroniter\b/frontier/g -s/\bfucntion\b/function/g -s/\bfucntioning\b/functioning/g -s/\bfufill\b/fulfill/g -s/\bfufilled\b/fulfilled/g -s/\bfulfiled\b/fulfilled/g -s/\bfullfill\b/fulfill/g -s/\bfullfilled\b/fulfilled/g -s/\bfundametal\b/fundamental/g -s/\bfundametals\b/fundamentals/g -s/\bfunguses\b/fungi/g -s/\bfuntion\b/function/g -s/\bfuruther\b/further/g -s/\bfuther\b/further/g -s/\bfuthermore\b/furthermore/g -s/\bgalatic\b/galactic/g -s/\bGalations\b/Galatians/g -s/\bgallaxies\b/galaxies/g -s/\bgalvinized\b/galvanized/g -s/\bGameboy\b/Game Boy/g -s/\bganerate\b/generate/g -s/\bganes\b/games/g -s/\bganster\b/gangster/g -s/\bgarantee\b/guarantee/g -s/\bgaranteed\b/guaranteed/g -s/\bgarantees\b/guarantees/g -s/\bgardai\b/gardaÃÂ/g -s/\bgarnison\b/garrison/g -s/\bgauarana\b/guaraná/g -s/\bgaurantee\b/guarantee/g -s/\bgauranteed\b/guaranteed/g -s/\bgaurantees\b/guarantees/g -s/\bgaurentee\b/guarantee/g -s/\bgaurenteed\b/guaranteed/g -s/\bgaurentees\b/guarantees/g -s/\bgeneological\b/genealogical/g -s/\bgeneologies\b/genealogies/g -s/\bgeneology\b/genealogy/g -s/\bgeneraly\b/generally/g -s/\bgeneratting\b/generating/g -s/\bgenialia\b/genitalia/g -s/\bgeographicial\b/geographical/g -s/\bgeometrician\b/geometer/g -s/\bgeometricians\b/geometers/g -s/\bgerat\b/great/g -s/\bGhandi\b/Gandhi/g -s/\bglamourous\b/glamorous/g -s/\bglight\b/flight/g -s/\bgnawwed\b/gnawed/g -s/\bgodess\b/goddess/g -s/\bgodesses\b/goddesses/g -s/\bGodounov\b/Godunov/g -s/\bgoign\b/going/g -s/\bgonig\b/going/g -s/\bGothenberg\b/Gothenburg/g -s/\bGottleib\b/Gottlieb/g -s/\bgouvener\b/governor/g -s/\bgovement\b/government/g -s/\bgovenment\b/government/g -s/\bgovenrment\b/government/g -s/\bgoverance\b/governance/g -s/\bgoverment\b/government/g -s/\bgovermental\b/governmental/g -s/\bgoverner\b/governor/g -s/\bgovernmnet\b/government/g -s/\bgovorment\b/government/g -s/\bgovormental\b/governmental/g -s/\bgovornment\b/government/g -s/\bgracefull\b/graceful/g -s/\bgraet\b/great/g -s/\bgrafitti\b/graffiti/g -s/\bgramatically\b/grammatically/g -s/\bgrammaticaly\b/grammatically/g -s/\bgrammer\b/grammar/g -s/\bgrat\b/great/g -s/\bgratuitious\b/gratuitous/g -s/\bgreatful\b/grateful/g -s/\bgreatfully\b/gratefully/g -s/\bgreif\b/grief/g -s/\bgridles\b/griddles/g -s/\bgropu\b/group/g -s/\bgrwo\b/grow/g -s/\bguage\b/gauge/g -s/\bguarentee\b/guarantee/g -s/\bguarenteed\b/guaranteed/g -s/\bguarentees\b/guarantees/g -s/\bGuatamala\b/Guatemala/g -s/\bGuatamalan\b/Guatemalan/g -s/\bguerrila\b/guerrilla/g -s/\bguerrilas\b/guerrillas/g -s/\bguidence\b/guidance/g -s/\bGuilia\b/Giulia/g -s/\bGuilio\b/Giulio/g -s/\bGuiness\b/Guinness/g -s/\bGuiseppe\b/Giuseppe/g -s/\bgunanine\b/guanine/g -s/\bgurantee\b/guarantee/g -s/\bguranteed\b/guaranteed/g -s/\bgurantees\b/guarantees/g -s/\bguttaral\b/guttural/g -s/\bgutteral\b/guttural/g -s/\bhabaeus\b/habeas/g -s/\bhabeus\b/habeas/g -s/\bHabsbourg\b/Habsburg/g -s/\bhaemorrage\b/haemorrhage/g -s/\bhalarious\b/hilarious/g -s/\bhalp\b/help/g -s/\bhapen\b/happen/g -s/\bhapened\b/happened/g -s/\bhapening\b/happening/g -s/\bhappend\b/happened/g -s/\bhappended\b/happened/g -s/\bhappenned\b/happened/g -s/\bharased\b/harassed/g -s/\bharases\b/harasses/g -s/\bharasment\b/harassment/g -s/\bharasments\b/harassments/g -s/\bharassement\b/harassment/g -s/\bharras\b/harass/g -s/\bharrased\b/harassed/g -s/\bharrases\b/harasses/g -s/\bharrasing\b/harassing/g -s/\bharrasment\b/harassment/g -s/\bharrasments\b/harassments/g -s/\bharrassed\b/harassed/g -s/\bharrasses\b/harassed/g -s/\bharrassing\b/harassing/g -s/\bharrassment\b/harassment/g -s/\bharrassments\b/harassments/g -s/\bhasnt\b/hasn't/g -s/\bHatian\b/Haitian/g -s/\bhaviest\b/heaviest/g -s/\bheadquarer\b/headquarter/g -s/\bheadquater\b/headquarter/g -s/\bheadquatered\b/headquartered/g -s/\bheadquaters\b/headquarters/g -s/\bhealthercare\b/healthcare/g -s/\bheared\b/heard/g -s/\bheathy\b/healthy/g -s/\bHeidelburg\b/Heidelberg/g -s/\bheigher\b/higher/g -s/\bheirarchy\b/hierarchy/g -s/\bheiroglyphics\b/hieroglyphics/g -s/\bhelment\b/helmet/g -s/\bhelpfull\b/helpful/g -s/\bhelpped\b/helped/g -s/\bhemmorhage\b/hemorrhage/g -s/\bheridity\b/heredity/g -s/\bheroe\b/hero/g -s/\bheros\b/heroes/g -s/\bhertiage\b/heritage/g -s/\bhertzs\b/hertz/g -s/\bhesistant\b/hesitant/g -s/\bheterogenous\b/heterogeneous/g -s/\bhieght\b/height/g -s/\bhierachical\b/hierarchical/g -s/\bhierachies\b/hierarchies/g -s/\bhierachy\b/hierarchy/g -s/\bhierarcical\b/hierarchical/g -s/\bhierarcy\b/hierarchy/g -s/\bhieroglph\b/hieroglyph/g -s/\bhieroglphs\b/hieroglyphs/g -s/\bhiger\b/higher/g -s/\bhigest\b/highest/g -s/\bhigway\b/highway/g -s/\bhillarious\b/hilarious/g -s/\bhimselv\b/himself/g -s/\bhinderance\b/hindrance/g -s/\bhinderence\b/hindrance/g -s/\bhindrence\b/hindrance/g -s/\bhipopotamus\b/hippopotamus/g -s/\bhismelf\b/himself/g -s/\bhistocompatability\b/histocompatibility/g -s/\bhistoricians\b/historians/g -s/\bhitsingles\b/hit singles/g -s/\bholf\b/hold/g -s/\bholliday\b/holiday/g -s/\bhomestate\b/home state/g -s/\bhomogeneize\b/homogenize/g -s/\bhomogeneized\b/homogenized/g -s/\bhonory\b/honorary/g -s/\bhorrifing\b/horrifying/g -s/\bhosited\b/hoisted/g -s/\bhospitible\b/hospitable/g -s/\bhounour\b/honour/g -s/\bhowver\b/however/g -s/\bhsitorians\b/historians/g -s/\bhstory\b/history/g -s/\bhtey\b/they/g -s/\bhtikn\b/think/g -s/\bhting\b/thing/g -s/\bhtink\b/think/g -s/\bhtis\b/this/g -s/\bhuminoid\b/humanoid/g -s/\bhumoural\b/humoral/g -s/\bhumurous\b/humorous/g -s/\bhusban\b/husband/g -s/\bhvae\b/have/g -s/\bhvaing\b/having/g -s/\bhwihc\b/which/g -s/\bhwile\b/while/g -s/\bhwole\b/whole/g -s/\bhydogen\b/hydrogen/g -s/\bhydropile\b/hydrophile/g -s/\bhydropilic\b/hydrophilic/g -s/\bhydropobe\b/hydrophobe/g -s/\bhydropobic\b/hydrophobic/g -s/\bhygeine\b/hygiene/g -s/\bhyjack\b/hijack/g -s/\bhyjacking\b/hijacking/g -s/\bhypocracy\b/hypocrisy/g -s/\bhypocrasy\b/hypocrisy/g -s/\bhypocricy\b/hypocrisy/g -s/\bhypocrit\b/hypocrite/g -s/\bhypocrits\b/hypocrites/g -s/\biconclastic\b/iconoclastic/g -s/\bidaeidae\b/idea/g -s/\bidaes\b/ideas/g -s/\bidealogies\b/ideologies/g -s/\bidealogy\b/ideology/g -s/\bidenticial\b/identical/g -s/\bidentifers\b/identifiers/g -s/\bideosyncratic\b/idiosyncratic/g -s/\bidiosyncracy\b/idiosyncrasy/g -s/\bIhaca\b/Ithaca/g -s/\billegimacy\b/illegitimacy/g -s/\billegitmate\b/illegitimate/g -s/\billess\b/illness/g -s/\billiegal\b/illegal/g -s/\billution\b/illusion/g -s/\bilness\b/illness/g -s/\bilogical\b/illogical/g -s/\bimagenary\b/imaginary/g -s/\bimagin\b/imagine/g -s/\bimcomplete\b/incomplete/g -s/\bimediately\b/immediately/g -s/\bimense\b/immense/g -s/\bimmediatley\b/immediately/g -s/\bimmediatly\b/immediately/g -s/\bimmidately\b/immediately/g -s/\bimmidiately\b/immediately/g -s/\bimmitate\b/imitate/g -s/\bimmitated\b/imitated/g -s/\bimmitating\b/imitating/g -s/\bimmitator\b/imitator/g -s/\bimmunosupressant\b/immunosuppressant/g -s/\bimpecabbly\b/impeccably/g -s/\bimpedence\b/impedance/g -s/\bimplamenting\b/implementing/g -s/\bimpliment\b/implement/g -s/\bimplimented\b/implemented/g -s/\bimploys\b/employs/g -s/\bimportamt\b/important/g -s/\bimpressario\b/impresario/g -s/\bimprioned\b/imprisoned/g -s/\bimprisonned\b/imprisoned/g -s/\bimprovision\b/improvisation/g -s/\bimprovments\b/improvements/g -s/\binablility\b/inability/g -s/\binaccessable\b/inaccessible/g -s/\binadiquate\b/inadequate/g -s/\binadquate\b/inadequate/g -s/\binadvertant\b/inadvertent/g -s/\binadvertantly\b/inadvertently/g -s/\binagurated\b/inaugurated/g -s/\binaguration\b/inauguration/g -s/\binappropiate\b/inappropriate/g -s/\binaugures\b/inaugurates/g -s/\binbalance\b/imbalance/g -s/\binbalanced\b/imbalanced/g -s/\binbetween\b/between/g -s/\bincarcirated\b/incarcerated/g -s/\bincidentially\b/incidentally/g -s/\bincidently\b/incidentally/g -s/\binclreased\b/increased/g -s/\binclud\b/include/g -s/\bincludng\b/including/g -s/\bincompatabilities\b/incompatibilities/g -s/\bincompatability\b/incompatibility/g -s/\bincompatable\b/incompatible/g -s/\bincompatablities\b/incompatibilities/g -s/\bincompatablity\b/incompatibility/g -s/\bincompatiblities\b/incompatibilities/g -s/\bincompatiblity\b/incompatibility/g -s/\bincompetance\b/incompetence/g -s/\bincompetant\b/incompetent/g -s/\bincomptable\b/incompatible/g -s/\bincomptetent\b/incompetent/g -s/\binconsistant\b/inconsistent/g -s/\bincoroporated\b/incorporated/g -s/\bincorperation\b/incorporation/g -s/\bincorportaed\b/incorporated/g -s/\bincorprates\b/incorporates/g -s/\bincorruptable\b/incorruptible/g -s/\bincramentally\b/incrementally/g -s/\bincreadible\b/incredible/g -s/\bincredable\b/incredible/g -s/\binctroduce\b/introduce/g -s/\binctroduced\b/introduced/g -s/\bincuding\b/including/g -s/\bincunabla\b/incunabula/g -s/\bindefinately\b/indefinitely/g -s/\bindefinatly\b/indefinitely/g -s/\bindefineable\b/undefinable/g -s/\bindefinitly\b/indefinitely/g -s/\bindentical\b/identical/g -s/\bindepedantly\b/independently/g -s/\bindepedence\b/independence/g -s/\bindependance\b/independence/g -s/\bindependant\b/independent/g -s/\bindependantly\b/independently/g -s/\bindependece\b/independence/g -s/\bindependendet\b/independent/g -s/\bindespensable\b/indispensable/g -s/\bindespensible\b/indispensable/g -s/\bindictement\b/indictment/g -s/\bindigineous\b/indigenous/g -s/\bindipendence\b/independence/g -s/\bindipendent\b/independent/g -s/\bindipendently\b/independently/g -s/\bindispensible\b/indispensable/g -s/\bindisputible\b/indisputable/g -s/\bindisputibly\b/indisputably/g -s/\bindite\b/indict/g -s/\bindividualy\b/individually/g -s/\bindpendent\b/independent/g -s/\bindpendently\b/independently/g -s/\bindulgue\b/indulge/g -s/\bindutrial\b/industrial/g -s/\bindviduals\b/individuals/g -s/\binefficienty\b/inefficiently/g -s/\binevatible\b/inevitable/g -s/\binevitible\b/inevitable/g -s/\binevititably\b/inevitably/g -s/\binfalability\b/infallibility/g -s/\binfallable\b/infallible/g -s/\binfectuous\b/infectious/g -s/\binfered\b/inferred/g -s/\binfilitrate\b/infiltrate/g -s/\binfilitrated\b/infiltrated/g -s/\binfilitration\b/infiltration/g -s/\binfinit\b/infinite/g -s/\binflamation\b/inflammation/g -s/\binfluencial\b/influential/g -s/\binfluented\b/influenced/g -s/\binfomation\b/information/g -s/\binformtion\b/information/g -s/\binfrantryman\b/infantryman/g -s/\binfrigement\b/infringement/g -s/\bingenius\b/ingenious/g -s/\bingreediants\b/ingredients/g -s/\binhabitans\b/inhabitants/g -s/\binherantly\b/inherently/g -s/\binheritence\b/inheritance/g -s/\binital\b/initial/g -s/\binitally\b/initially/g -s/\binitation\b/initiation/g -s/\binitiaitive\b/initiative/g -s/\binlcuding\b/including/g -s/\binmigrant\b/immigrant/g -s/\binmigrants\b/immigrants/g -s/\binnoculated\b/inoculated/g -s/\binocence\b/innocence/g -s/\binofficial\b/unofficial/g -s/\binot\b/into/g -s/\binpeach\b/impeach/g -s/\binpending\b/impending/g -s/\binpenetrable\b/impenetrable/g -s/\binpolite\b/impolite/g -s/\binprisonment\b/imprisonment/g -s/\binproving\b/improving/g -s/\binsectiverous\b/insectivorous/g -s/\binsensative\b/insensitive/g -s/\binseperable\b/inseparable/g -s/\binsistance\b/insistence/g -s/\binsitution\b/institution/g -s/\binsitutions\b/institutions/g -s/\binstade\b/instead/g -s/\binstatance\b/instance/g -s/\binstitue\b/institute/g -s/\binstuction\b/instruction/g -s/\binstuments\b/instruments/g -s/\binstutionalized\b/institutionalized/g -s/\binstutions\b/intuitions/g -s/\binsurence\b/insurance/g -s/\bintelectual\b/intellectual/g -s/\binteligence\b/intelligence/g -s/\binteligent\b/intelligent/g -s/\bintenational\b/international/g -s/\bintepretation\b/interpretation/g -s/\bintepretator\b/interpretor/g -s/\binterational\b/international/g -s/\binterchangable\b/interchangeable/g -s/\binterchangably\b/interchangeably/g -s/\bintercontinential\b/intercontinental/g -s/\bintercontinetal\b/intercontinental/g -s/\binterelated\b/interrelated/g -s/\binterferance\b/interference/g -s/\binterfereing\b/interfering/g -s/\bintergrated\b/integrated/g -s/\bintergration\b/integration/g -s/\binterm\b/interim/g -s/\binternation\b/international/g -s/\binterpet\b/interpret/g -s/\binterrim\b/interim/g -s/\binterrugum\b/interregnum/g -s/\bintertaining\b/entertaining/g -s/\binterupt\b/interrupt/g -s/\bintervines\b/intervenes/g -s/\bintevene\b/intervene/g -s/\bintial\b/initial/g -s/\bintially\b/initially/g -s/\bintrduced\b/introduced/g -s/\bintrest\b/interest/g -s/\bintrodued\b/introduced/g -s/\bintruduced\b/introduced/g -s/\bintrument\b/instrument/g -s/\bintrumental\b/instrumental/g -s/\bintruments\b/instruments/g -s/\bintrusted\b/entrusted/g -s/\bintutive\b/intuitive/g -s/\bintutively\b/intuitively/g -s/\binudstry\b/industry/g -s/\binventer\b/inventor/g -s/\binvertibrates\b/invertebrates/g -s/\binvestingate\b/investigate/g -s/\binvolvment\b/involvement/g -s/\birelevent\b/irrelevant/g -s/\biresistable\b/irresistible/g -s/\biresistably\b/irresistibly/g -s/\biresistible\b/irresistible/g -s/\biresistibly\b/irresistibly/g -s/\biritable\b/irritable/g -s/\biritated\b/irritated/g -s/\bironicly\b/ironically/g -s/\birregardless\b/regardless/g -s/\birrelevent\b/irrelevant/g -s/\birreplacable\b/irreplaceable/g -s/\birresistable\b/irresistible/g -s/\birresistably\b/irresistibly/g -s/\bisnt\b/isn't/g -s/\bIsraelies\b/Israelis/g -s/\bissueing\b/issuing/g -s/\bitnroduced\b/introduced/g -s/\biunior\b/junior/g -s/\biwll\b/will/g -s/\biwth\b/with/g -s/\bJanurary\b/January/g -s/\bJanuray\b/January/g -s/\bJapanes\b/Japanese/g -s/\bjaques\b/jacques/g -s/\bjeapardy\b/jeopardy/g -s/\bjewllery\b/jewellery/g -s/\bJohanine\b/Johannine/g -s/\bjorunal\b/journal/g -s/\bJospeh\b/Joseph/g -s/\bjouney\b/journey/g -s/\bjournied\b/journeyed/g -s/\bjournies\b/journeys/g -s/\bjstu\b/just/g -s/\bjsut\b/just/g -s/\bJuadaism\b/Judaism/g -s/\bJuadism\b/Judaism/g -s/\bjudical\b/judicial/g -s/\bjudisuary\b/judiciary/g -s/\bjuducial\b/judicial/g -s/\bjuristiction\b/jurisdiction/g -s/\bjuristictions\b/jurisdictions/g -s/\bkindergarden\b/kindergarten/g -s/\bklenex\b/kleenex/g -s/\bknifes\b/knives/g -s/\bknive\b/knife/g -s/\bknowlege\b/knowledge/g -s/\bknowlegeable\b/knowledgeable/g -s/\bknwo\b/know/g -s/\bknwos\b/knows/g -s/\bkonw\b/know/g -s/\bkonws\b/knows/g -s/\bkwno\b/know/g -s/\blabratory\b/laboratory/g -s/\blaguage\b/language/g -s/\blaguages\b/languages/g -s/\blarg\b/large/g -s/\blargst\b/largest/g -s/\blarrry\b/larry/g -s/\blastr\b/last/g -s/\blattitude\b/latitude/g -s/\blaunhed\b/launched/g -s/\blavae\b/larvae/g -s/\blayed\b/laid/g -s/\blazyness\b/laziness/g -s/\bleage\b/league/g -s/\bleathal\b/lethal/g -s/\blefted\b/left/g -s/\blegitamate\b/legitimate/g -s/\blegitmate\b/legitimate/g -s/\bleibnitz\b/leibniz/g -s/\blenght\b/length/g -s/\bleran\b/learn/g -s/\blerans\b/learns/g -s/\bleutenant\b/lieutenant/g -s/\blevetate\b/levitate/g -s/\blevetated\b/levitated/g -s/\blevetates\b/levitates/g -s/\blevetating\b/levitating/g -s/\blevle\b/level/g -s/\bliasion\b/liaison/g -s/\bliason\b/liaison/g -s/\bliasons\b/liaisons/g -s/\blibary\b/library/g -s/\blibell\b/libel/g -s/\blibguistic\b/linguistic/g -s/\blibguistics\b/linguistics/g -s/\blibitarianisn\b/libertarianism/g -s/\blieing\b/lying/g -s/\bliek\b/like/g -s/\bliekd\b/liked/g -s/\bliesure\b/leisure/g -s/\blieuenant\b/lieutenant/g -s/\blieved\b/lived/g -s/\bliftime\b/lifetime/g -s/\blightyear\b/light year/g -s/\blightyears\b/light years/g -s/\blikelyhood\b/likelihood/g -s/\blinnaena\b/linnaean/g -s/\blippizaner\b/lipizzaner/g -s/\bliquify\b/liquefy/g -s/\blistners\b/listeners/g -s/\blitature\b/literature/g -s/\bliteraly\b/literally/g -s/\bliterture\b/literature/g -s/\blittel\b/little/g -s/\blitterally\b/literally/g -s/\bliuke\b/like/g -s/\blivley\b/lively/g -s/\blmits\b/limits/g -s/\bloev\b/love/g -s/\blonelyness\b/loneliness/g -s/\blongitudonal\b/longitudinal/g -s/\blonley\b/lonely/g -s/\bloosing\b/losing/g -s/\blotharingen\b/lothringen/g -s/\blsat\b/last/g -s/\blukid\b/likud/g -s/\blveo\b/love/g -s/\blvoe\b/love/g -s/\bLybia\b/Libya/g -s/\bmackeral\b/mackerel/g -s/\bmagasine\b/magazine/g -s/\bmagizine\b/magazine/g -s/\bmagisine\b/magazine/g -s/\bmagincian\b/magician/g -s/\bmagnificient\b/magnificent/g -s/\bmagolia\b/magnolia/g -s/\bmailny\b/mainly/g -s/\bmaintainance\b/maintenance/g -s/\bmaintainence\b/maintenance/g -s/\bmaintance\b/maintenance/g -s/\bmaintenence\b/maintenance/g -s/\bmaintinaing\b/maintaining/g -s/\bmaintioned\b/mentioned/g -s/\bmajoroty\b/majority/g -s/\bmakse\b/makes/g -s/\bMalcom\b/Malcolm/g -s/\bmaltesian\b/Maltese/g -s/\bmamal\b/mammal/g -s/\bmamalian\b/mammalian/g -s/\bmanagment\b/management/g -s/\bmaneouvre\b/manoeuvre/g -s/\bmaneouvred\b/manoeuvred/g -s/\bmaneouvres\b/manoeuvres/g -s/\bmaneouvring\b/manoeuvring/g -s/\bmanisfestations\b/manifestations/g -s/\bmanoeuverability\b/maneuverability/g -s/\bmantained\b/maintained/g -s/\bmanufacturedd\b/manufactured/g -s/\bmanufature\b/manufacture/g -s/\bmanufatured\b/manufactured/g -s/\bmanufaturing\b/manufacturing/g -s/\bmanuver\b/maneuver/g -s/\bmariage\b/marriage/g -s/\bmarjority\b/majority/g -s/\bmarkes\b/marks/g -s/\bmarketting\b/marketing/g -s/\bmarmelade\b/marmalade/g -s/\bmarrage\b/marriage/g -s/\bmarraige\b/marriage/g -s/\bmarrtyred\b/martyred/g -s/\bmarryied\b/married/g -s/\bMassachussets\b/Massachusetts/g -s/\bMassachussetts\b/Massachusetts/g -s/\bmassmedia\b/mass media/g -s/\bmasterbation\b/masturbation/g -s/\bmataphysical\b/metaphysical/g -s/\bmateralists\b/materialist/g -s/\bmathamatics\b/mathematics/g -s/\bmathematican\b/mathematician/g -s/\bmathematicas\b/mathematics/g -s/\bmatheticians\b/mathematicians/g -s/\bmathmatically\b/mathematically/g -s/\bmathmatician\b/mathematician/g -s/\bmathmaticians\b/mathematicians/g -s/\bmccarthyst\b/mccarthyist/g -s/\bmchanics\b/mechanics/g -s/\bmeaninng\b/meaning/g -s/\bmechandise\b/merchandise/g -s/\bmedacine\b/medicine/g -s/\bmedeival\b/medieval/g -s/\bmedevial\b/medieval/g -s/\bmediciney\b/mediciny/g -s/\bmedievel\b/medieval/g -s/\bmediterainnean\b/mediterranean/g -s/\bMediteranean\b/Mediterranean/g -s/\bmeerkrat\b/meerkat/g -s/\bmelieux\b/milieux/g -s/\bmembranaphone\b/membranophone/g -s/\bmemeber\b/member/g -s/\bmenally\b/mentally/g -s/\bmercentile\b/mercantile/g -s/\bmessanger\b/messenger/g -s/\bmessenging\b/messaging/g -s/\bmetalic\b/metallic/g -s/\bmetalurgic\b/metallurgic/g -s/\bmetalurgical\b/metallurgical/g -s/\bmetalurgy\b/metallurgy/g -s/\bmetamorphysis\b/metamorphosis/g -s/\bmetaphoricial\b/metaphorical/g -s/\bmeterologist\b/meteorologist/g -s/\bmeterology\b/meteorology/g -s/\bmethaphor\b/metaphor/g -s/\bmethaphors\b/metaphors/g -s/\bMichagan\b/Michigan/g -s/\bmicoscopy\b/microscopy/g -s/\bmidwifes\b/midwives/g -s/\bmileau\b/milieu/g -s/\bmilennia\b/millennia/g -s/\bmilennium\b/millennium/g -s/\bmileu\b/milieu/g -s/\bmiliary\b/military/g -s/\bmiligram\b/milligram/g -s/\bmilion\b/million/g -s/\bmiliraty\b/military/g -s/\bmillenia\b/millennia/g -s/\bmillenial\b/millennial/g -s/\bmillenialism\b/millennialism/g -s/\bmillenium\b/millennium/g -s/\bmillepede\b/millipede/g -s/\bmillioniare\b/millionaire/g -s/\bmillitant\b/militant/g -s/\bmillitary\b/military/g -s/\bmillon\b/million/g -s/\bmiltary\b/military/g -s/\bminature\b/miniature/g -s/\bminerial\b/mineral/g -s/\bministery\b/ministry/g -s/\bminsitry\b/ministry/g -s/\bminstries\b/ministries/g -s/\bminstry\b/ministry/g -s/\bminumum\b/minimum/g -s/\bmirrorred\b/mirrored/g -s/\bmiscelaneous\b/miscellaneous/g -s/\bmiscellanious\b/miscellaneous/g -s/\bmiscellanous\b/miscellaneous/g -s/\bmischeivous\b/mischievous/g -s/\bmischevious\b/mischievous/g -s/\bmischievious\b/mischievous/g -s/\bmisdameanor\b/misdemeanor/g -s/\bmisdameanors\b/misdemeanors/g -s/\bmisdemenor\b/misdemeanor/g -s/\bmisdemenors\b/misdemeanors/g -s/\bmisfourtunes\b/misfortunes/g -s/\bmisile\b/missile/g -s/\bMisouri\b/Missouri/g -s/\bmispell\b/misspell/g -s/\bmispelled\b/misspelled/g -s/\bmispelling\b/misspelling/g -s/\bmissen\b/mizzen/g -s/\bMissisipi\b/Mississippi/g -s/\bMissisippi\b/Mississippi/g -s/\bmissle\b/missile/g -s/\bmissonary\b/missionary/g -s/\bmisterious\b/mysterious/g -s/\bmistery\b/mystery/g -s/\bmisteryous\b/mysterious/g -s/\bmkae\b/make/g -s/\bmkaes\b/makes/g -s/\bmkaing\b/making/g -s/\bmkea\b/make/g -s/\bmoderm\b/modem/g -s/\bmodle\b/model/g -s/\bmoent\b/moment/g -s/\bmoeny\b/money/g -s/\bmohammedans\b/muslims/g -s/\bmoil\b/mohel/g -s/\bmoil\b/soil/g -s/\bmoleclues\b/molecules/g -s/\bmomento\b/memento/g -s/\bmonestaries\b/monasteries/g -s/\bmonickers\b/monikers/g -s/\bmonolite\b/monolithic/g -s/\bmontains\b/mountains/g -s/\bmontanous\b/mountainous/g -s/\bMontnana\b/Montana/g -s/\bmonts\b/months/g -s/\bmontypic\b/monotypic/g -s/\bmorgage\b/mortgage/g -s/\bMorisette\b/Morissette/g -s/\bMorrisette\b/Morissette/g -s/\bmorroccan\b/moroccan/g -s/\bmorrocco\b/morocco/g -s/\bmorroco\b/morocco/g -s/\bmortage\b/mortgage/g -s/\bmosture\b/moisture/g -s/\bmotiviated\b/motivated/g -s/\bmounth\b/month/g -s/\bmovei\b/movie/g -s/\bmovment\b/movement/g -s/\bmroe\b/more/g -s/\bmucuous\b/mucous/g -s/\bmuder\b/murder/g -s/\bmudering\b/murdering/g -s/\bmuhammadan\b/muslim/g -s/\bmulticultralism\b/multiculturalism/g -s/\bmultipled\b/multiplied/g -s/\bmultiplers\b/multipliers/g -s/\bmunbers\b/numbers/g -s/\bmuncipalities\b/municipalities/g -s/\bmuncipality\b/municipality/g -s/\bmunnicipality\b/municipality/g -s/\bmuscial\b/musical/g -s/\bmuscician\b/musician/g -s/\bmuscicians\b/musicians/g -s/\bmutiliated\b/mutilated/g -s/\bmyraid\b/myriad/g -s/\bmysef\b/myself/g -s/\bmysogynist\b/misogynist/g -s/\bmysogyny\b/misogyny/g -s/\bmysterous\b/mysterious/g -s/\bMythraic\b/Mithraic/g -s/\bnaieve\b/naive/g -s/\bNaploeon\b/Napoleon/g -s/\bNapolean\b/Napoleon/g -s/\bNapoleonian\b/Napoleonic/g -s/\bnaturaly\b/naturally/g -s/\bnaturely\b/naturally/g -s/\bnaturual\b/natural/g -s/\bnaturually\b/naturally/g -s/\bNazereth\b/Nazareth/g -s/\bneccesarily\b/necessarily/g -s/\bneccesary\b/necessary/g -s/\bneccessarily\b/necessarily/g -s/\bneccessary\b/necessary/g -s/\bneccessities\b/necessities/g -s/\bnecesarily\b/necessarily/g -s/\bnecesary\b/necessary/g -s/\bnecessiate\b/necessitate/g -s/\bneglible\b/negligible/g -s/\bnegligable\b/negligible/g -s/\bnegociate\b/negotiate/g -s/\bnegociation\b/negotiation/g -s/\bnegociations\b/negotiations/g -s/\bnegotation\b/negotiation/g -s/\bneigborhood\b/neighborhood/g -s/\bneigbourhood\b/neighbourhood/g -s/\bneolitic\b/neolithic/g -s/\bnessasarily\b/necessarily/g -s/\bnessecary\b/necessary/g -s/\bnestin\b/nesting/g -s/\bneverthless\b/nevertheless/g -s/\bnewletters\b/newsletters/g -s/\bnickle\b/nickel/g -s/\bnightfa;;\b/nightfall/g -s/\bnightime\b/nighttime/g -s/\bnineth\b/ninth/g -s/\bninteenth\b/nineteenth/g -s/\bninties\b/1990s/g -s/\bninty\b/ninety/g -s/\bnkow\b/know/g -s/\bnkwo\b/know/g -s/\bnmae\b/name/g -s/\bnoncombatents\b/noncombatants/g -s/\bnonsence\b/nonsense/g -s/\bnontheless\b/nonetheless/g -s/\bnoone\b/no one/g -s/\bnorhern\b/northern/g -s/\bnorthen\b/northern/g -s/\bnorthereastern\b/northeastern/g -s/\bnotabley\b/notably/g -s/\bnoteable\b/notable/g -s/\bnoteably\b/notably/g -s/\bnoteriety\b/notoriety/g -s/\bnoth\b/north/g -s/\bnothern\b/northern/g -s/\bnoticable\b/noticeable/g -s/\bnoticably\b/noticeably/g -s/\bnoticeing\b/noticing/g -s/\bnoticible\b/noticeable/g -s/\bnotwhithstanding\b/notwithstanding/g -s/\bnoveau\b/nouveau/g -s/\bNovermber\b/November/g -s/\bnowdays\b/nowadays/g -s/\bnowe\b/now/g -s/\bnto\b/not/g -s/\bnucular\b/nuclear/g -s/\bnuculear\b/nuclear/g -s/\bnuisanse\b/nuisance/g -s/\bNullabour\b/Nullarbor/g -s/\bnumberous\b/numerous/g -s/\bNuremburg\b/Nuremberg/g -s/\bnusance\b/nuisance/g -s/\bnutritent\b/nutrient/g -s/\bnutritents\b/nutrients/g -s/\bnuturing\b/nurturing/g -s/\bobediance\b/obedience/g -s/\bobediant\b/obedient/g -s/\bobession\b/obsession/g -s/\bobssessed\b/obsessed/g -s/\bobstacal\b/obstacle/g -s/\bobstancles\b/obstacles/g -s/\bobstruced\b/obstructed/g -s/\bocasion\b/occasion/g -s/\bocasional\b/occasional/g -s/\bocasionally\b/occasionally/g -s/\bocasionaly\b/occasionally/g -s/\bocasioned\b/occasioned/g -s/\bocasions\b/occasions/g -s/\bocassion\b/occasion/g -s/\bocassional\b/occasional/g -s/\bocassionally\b/occasionally/g -s/\bocassionaly\b/occasionally/g -s/\bocassioned\b/occasioned/g -s/\bocassions\b/occasions/g -s/\boccaison\b/occasion/g -s/\boccassion\b/occasion/g -s/\boccassional\b/occasional/g -s/\boccassionally\b/occasionally/g -s/\boccassionaly\b/occasionally/g -s/\boccassioned\b/occasioned/g -s/\boccassions\b/occasions/g -s/\boccationally\b/occasionally/g -s/\boccour\b/occur/g -s/\boccurance\b/occurrence/g -s/\boccurances\b/occurrences/g -s/\boccured\b/occurred/g -s/\boccurence\b/occurrence/g -s/\boccurences\b/occurrences/g -s/\boccuring\b/occurring/g -s/\boccurr\b/occur/g -s/\boccurrance\b/occurrence/g -s/\boccurrances\b/occurrences/g -s/\boctohedra\b/octahedra/g -s/\boctohedral\b/octahedral/g -s/\boctohedron\b/octahedron/g -s/\bocuntries\b/countries/g -s/\bocuntry\b/country/g -s/\bocurr\b/occur/g -s/\bocurrance\b/occurrence/g -s/\bocurred\b/occurred/g -s/\bocurrence\b/occurrence/g -s/\boffcers\b/officers/g -s/\boffcially\b/officially/g -s/\boffereings\b/offerings/g -s/\boffical\b/official/g -s/\boffically\b/officially/g -s/\bofficals\b/officials/g -s/\bofficaly\b/officially/g -s/\bofficialy\b/officially/g -s/\boffred\b/offered/g -s/\boftenly\b/often/g -s/\bomision\b/omission/g -s/\bomited\b/omitted/g -s/\bomiting\b/omitting/g -s/\bomlette\b/omelette/g -s/\bommision\b/omission/g -s/\bommited\b/omitted/g -s/\bommiting\b/omitting/g -s/\bommitted\b/omitted/g -s/\bommitting\b/omitting/g -s/\bomniverous\b/omnivorous/g -s/\bomniverously\b/omnivorously/g -s/\bomre\b/more/g -s/\bonyl\b/only/g -s/\bopeness\b/openness/g -s/\boponent\b/opponent/g -s/\boportunity\b/opportunity/g -s/\bopose\b/oppose/g -s/\boposite\b/opposite/g -s/\boposition\b/opposition/g -s/\boppenly\b/openly/g -s/\boppinion\b/opinion/g -s/\bopponant\b/opponent/g -s/\boppononent\b/opponent/g -s/\boppositition\b/opposition/g -s/\boppossed\b/opposed/g -s/\bopprotunity\b/opportunity/g -s/\bopression\b/oppression/g -s/\bopressive\b/oppressive/g -s/\bopthalmic\b/ophthalmic/g -s/\bopthalmologist\b/ophthalmologist/g -s/\bopthalmology\b/ophthalmology/g -s/\bopthamologist\b/ophthalmologist/g -s/\boptmizations\b/optimizations/g -s/\boptomism\b/optimism/g -s/\borded\b/ordered/g -s/\borganim\b/organism/g -s/\borganistion\b/organisation/g -s/\borganiztion\b/organization/g -s/\borginal\b/original/g -s/\borginally\b/originally/g -s/\borginize\b/organise/g -s/\boridinarily\b/ordinarily/g -s/\boriganaly\b/originally/g -s/\boriginaly\b/originally/g -s/\boriginially\b/originally/g -s/\boriginnally\b/originally/g -s/\borigional\b/original/g -s/\borignally\b/originally/g -s/\borignially\b/originally/g -s/\botehr\b/other/g -s/\boublisher\b/publisher/g -s/\bouevre\b/oeuvre/g -s/\boustanding\b/outstanding/g -s/\bovershaddowed\b/overshadowed/g -s/\boverthere\b/over there/g -s/\boverwelming\b/overwhelming/g -s/\boverwheliming\b/overwhelming/g -s/\boveride\b/override/g -s/\boverides\b/overrides/g -s/\bowrk\b/work/g -s/\bowudl\b/would/g -s/\boxigen\b/oxygen/g -s/\boximoron\b/oxymoron/g -s/\bp0enis\b/penis/g -s/\bpaide\b/paid/g -s/\bpaitience\b/patience/g -s/\bpaleolitic\b/paleolithic/g -s/\bpaliamentarian\b/parliamentarian/g -s/\bPalistian\b/Palestinian/g -s/\bPalistinian\b/Palestinian/g -s/\bPalistinians\b/Palestinians/g -s/\bpallete\b/palette/g -s/\bpamflet\b/pamphlet/g -s/\bpamplet\b/pamphlet/g -s/\bpantomine\b/pantomime/g -s/\bPapanicalou\b/Papanicolaou/g -s/\bparalel\b/parallel/g -s/\bparalell\b/parallel/g -s/\bparalelly\b/parallelly/g -s/\bparalely\b/parallelly/g -s/\bparallely\b/parallelly/g -s/\bparanthesis\b/parenthesis/g -s/\bparaphenalia\b/paraphernalia/g -s/\bparellels\b/parallels/g -s/\bparisitic\b/parasitic/g -s/\bparituclar\b/particular/g -s/\bparliment\b/parliament/g -s/\bparrakeets\b/parakeets/g -s/\bparralel\b/parallel/g -s/\bparrallel\b/parallel/g -s/\bparrallell\b/parallel/g -s/\bparrallelly\b/parallelly/g -s/\bparrallely\b/parallelly/g -s/\bpartialy\b/partially/g -s/\bparticually\b/particularly/g -s/\bparticualr\b/particular/g -s/\bparticuarly\b/particularly/g -s/\bparticularily\b/particularly/g -s/\bparticulary\b/particularly/g -s/\bpary\b/party/g -s/\bpased\b/passed/g -s/\bpasengers\b/passengers/g -s/\bpasserbys\b/passersby/g -s/\bpasttime\b/pastime/g -s/\bpastural\b/pastoral/g -s/\bpaticular\b/particular/g -s/\bpattented\b/patented/g -s/\bpavillion\b/pavilion/g -s/\bpayed\b/paid/g -s/\bpblisher\b/publisher/g -s/\bpbulisher\b/publisher/g -s/\bpeacefuland\b/peaceful and/g -s/\bpeageant\b/pageant/g -s/\bpeaple\b/people/g -s/\bpeaples\b/peoples/g -s/\bpeculure\b/peculiar/g -s/\bpedestrain\b/pedestrian/g -s/\bpeformed\b/performed/g -s/\bpeice\b/piece/g -s/\bPeloponnes\b/Peloponnesus/g -s/\bpenatly\b/penalty/g -s/\bpenerator\b/penetrator/g -s/\bpenisula\b/peninsula/g -s/\bpenisular\b/peninsular/g -s/\bpenninsula\b/peninsula/g -s/\bpenninsular\b/peninsular/g -s/\bpennisula\b/peninsula/g -s/\bPennyslvania\b/Pennsylvania/g -s/\bpensle\b/pencil/g -s/\bpensinula\b/peninsula/g -s/\bpeom\b/poem/g -s/\bpeoms\b/poems/g -s/\bpeopel\b/people/g -s/\bpeopels\b/peoples/g -s/\bpeotry\b/poetry/g -s/\bperade\b/parade/g -s/\bpercepted\b/perceived/g -s/\bpercieve\b/perceive/g -s/\bpercieved\b/perceived/g -s/\bperenially\b/perennially/g -s/\bperfomance\b/performance/g -s/\bperfomers\b/performers/g -s/\bperformence\b/performance/g -s/\bperhasp\b/perhaps/g -s/\bperheaps\b/perhaps/g -s/\bperhpas\b/perhaps/g -s/\bperipathetic\b/peripatetic/g -s/\bperistent\b/persistent/g -s/\bperjery\b/perjury/g -s/\bperjorative\b/pejorative/g -s/\bpermanant\b/permanent/g -s/\bpermenant\b/permanent/g -s/\bpermenantly\b/permanently/g -s/\bpermissable\b/permissible/g -s/\bperogative\b/prerogative/g -s/\bperonal\b/personal/g -s/\bperpertrated\b/perpetrated/g -s/\bperosnality\b/personality/g -s/\bperphas\b/perhaps/g -s/\bperpindicular\b/perpendicular/g -s/\bpersan\b/person/g -s/\bperseverence\b/perseverance/g -s/\bpersistance\b/persistence/g -s/\bpersistant\b/persistent/g -s/\bpersonell\b/personnel/g -s/\bpersonnell\b/personnel/g -s/\bpersuded\b/persuaded/g -s/\bpersue\b/pursue/g -s/\bpersued\b/pursued/g -s/\bpersuing\b/pursuing/g -s/\bpersuit\b/pursuit/g -s/\bpersuits\b/pursuits/g -s/\bpertubation\b/perturbation/g -s/\bpertubations\b/perturbations/g -s/\bpessiary\b/pessary/g -s/\bpetetion\b/petition/g -s/\bPharoah\b/Pharaoh/g -s/\bphenomenom\b/phenomenon/g -s/\bphenomenonal\b/phenomenal/g -s/\bphenomenonly\b/phenomenally/g -s/\bphenomonenon\b/phenomenon/g -s/\bphenomonon\b/phenomenon/g -s/\bphenonmena\b/phenomena/g -s/\bPhilipines\b/Philippines/g -s/\bphilisopher\b/philosopher/g -s/\bphilisophical\b/philosophical/g -s/\bphilisophy\b/philosophy/g -s/\bPhillipine\b/Philippine/g -s/\bPhillipines\b/Philippines/g -s/\bPhillippines\b/Philippines/g -s/\bphillosophically\b/philosophically/g -s/\bphilospher\b/philosopher/g -s/\bphilosphies\b/philosophies/g -s/\bphilosphy\b/philosophy/g -s/\bPhonecian\b/Phoenecian/g -s/\bphongraph\b/phonograph/g -s/\bphylosophical\b/philosophical/g -s/\bphysicaly\b/physically/g -s/\bpiblisher\b/publisher/g -s/\bpich\b/pitch/g -s/\bpilgrimmage\b/pilgrimage/g -s/\bpilgrimmages\b/pilgrimages/g -s/\bpinapple\b/pineapple/g -s/\bpinnaple\b/pineapple/g -s/\bpinoneered\b/pioneered/g -s/\bplagarism\b/plagiarism/g -s/\bplanation\b/plantation/g -s/\bplaned\b/planned/g -s/\bplantiff\b/plaintiff/g -s/\bplateu\b/plateau/g -s/\bplausable\b/plausible/g -s/\bplayright\b/playwright/g -s/\bplaywrite\b/playwright/g -s/\bplaywrites\b/playwrights/g -s/\bpleasent\b/pleasant/g -s/\bplebicite\b/plebiscite/g -s/\bplesant\b/pleasant/g -s/\bpoenis\b/penis/g -s/\bpoeoples\b/peoples/g -s/\bpoety\b/poetry/g -s/\bpoisin\b/poison/g -s/\bpolical\b/political/g -s/\bpolinator\b/pollinator/g -s/\bpolinators\b/pollinators/g -s/\bpolitican\b/politician/g -s/\bpoliticans\b/politicians/g -s/\bpoltical\b/political/g -s/\bpolute\b/pollute/g -s/\bpoluted\b/polluted/g -s/\bpolutes\b/pollutes/g -s/\bpoluting\b/polluting/g -s/\bpolution\b/pollution/g -s/\bpolyphonyic\b/polyphonic/g -s/\bpolysaccaride\b/polysaccharide/g -s/\bpolysaccharid\b/polysaccharide/g -s/\bpomegranite\b/pomegranate/g -s/\bpomotion\b/promotion/g -s/\bpoportional\b/proportional/g -s/\bpopoulation\b/population/g -s/\bpopularaty\b/popularity/g -s/\bpopulare\b/popular/g -s/\bpopuler\b/popular/g -s/\bporshan\b/portion/g -s/\bporshon\b/portion/g -s/\bportait\b/portrait/g -s/\bportayed\b/portrayed/g -s/\bportraing\b/portraying/g -s/\bPortugese\b/Portuguese/g -s/\bportuguease\b/portuguese/g -s/\bportugues\b/Portuguese/g -s/\bposess\b/possess/g -s/\bposessed\b/possessed/g -s/\bposesses\b/possesses/g -s/\bposessing\b/possessing/g -s/\bposession\b/possession/g -s/\bposessions\b/possessions/g -s/\bposion\b/poison/g -s/\bpossable\b/possible/g -s/\bpossably\b/possibly/g -s/\bposseses\b/possesses/g -s/\bpossesing\b/possessing/g -s/\bpossesion\b/possession/g -s/\bpossessess\b/possesses/g -s/\bpossibile\b/possible/g -s/\bpossibilty\b/possibility/g -s/\bpossiblility\b/possibility/g -s/\bpossiblilty\b/possibility/g -s/\bpossiblities\b/possibilities/g -s/\bpossiblity\b/possibility/g -s/\bpossition\b/position/g -s/\bPostdam\b/Potsdam/g -s/\bposthomous\b/posthumous/g -s/\bpostion\b/position/g -s/\bpostive\b/positive/g -s/\bpotatos\b/potatoes/g -s/\bpotrait\b/portrait/g -s/\bpotrayed\b/portrayed/g -s/\bpoulations\b/populations/g -s/\bpoverful\b/powerful/g -s/\bpoweful\b/powerful/g -s/\bpowerfull\b/powerful/g -s/\bppublisher\b/publisher/g -s/\bpractial\b/practical/g -s/\bpractially\b/practically/g -s/\bpracticaly\b/practically/g -s/\bpracticioner\b/practitioner/g -s/\bpracticioners\b/practitioners/g -s/\bpracticly\b/practically/g -s/\bpractioner\b/practitioner/g -s/\bpractioners\b/practitioners/g -s/\bprairy\b/prairie/g -s/\bprarie\b/prairie/g -s/\bpraries\b/prairies/g -s/\bpratice\b/practice/g -s/\bpreample\b/preamble/g -s/\bprecedessor\b/predecessor/g -s/\bpreceed\b/precede/g -s/\bpreceeded\b/preceded/g -s/\bpreceeding\b/preceding/g -s/\bpreceeds\b/precedes/g -s/\bprecentage\b/percentage/g -s/\bprecice\b/precise/g -s/\bprecisly\b/precisely/g -s/\bprecurser\b/precursor/g -s/\bpredecesors\b/predecessors/g -s/\bpredicatble\b/predictable/g -s/\bpredicitons\b/predictions/g -s/\bpredomiantly\b/predominately/g -s/\bprefered\b/preferred/g -s/\bprefering\b/preferring/g -s/\bpreferrably\b/preferably/g -s/\bpregancies\b/pregnancies/g -s/\bpreiod\b/period/g -s/\bpreliferation\b/proliferation/g -s/\bpremeire\b/premiere/g -s/\bpremeired\b/premiered/g -s/\bpremillenial\b/premillennial/g -s/\bpreminence\b/preeminence/g -s/\bpremission\b/permission/g -s/\bPremonasterians\b/Premonstratensians/g -s/\bpreocupation\b/preoccupation/g -s/\bprepair\b/prepare/g -s/\bprepartion\b/preparation/g -s/\bprepatory\b/preparatory/g -s/\bpreperation\b/preparation/g -s/\bpreperations\b/preparations/g -s/\bpreriod\b/period/g -s/\bpresedential\b/presidential/g -s/\bpresense\b/presence/g -s/\bpresidenital\b/presidential/g -s/\bpresidental\b/presidential/g -s/\bpresitgious\b/prestigious/g -s/\bprespective\b/perspective/g -s/\bprestigeous\b/prestigious/g -s/\bprestigous\b/prestigious/g -s/\bpresumabely\b/presumably/g -s/\bpresumibly\b/presumably/g -s/\bpretection\b/protection/g -s/\bprevelant\b/prevalent/g -s/\bpreverse\b/perverse/g -s/\bprevivous\b/previous/g -s/\bpricipal\b/principal/g -s/\bpriciple\b/principle/g -s/\bpriestood\b/priesthood/g -s/\bprimarly\b/primarily/g -s/\bprimative\b/primitive/g -s/\bprimatively\b/primitively/g -s/\bprimatives\b/primitives/g -s/\bprimordal\b/primordial/g -s/\bprinciplaity\b/principality/g -s/\bprincipaly\b/principality/g -s/\bprincipial\b/principal/g -s/\bprinciply\b/principally/g -s/\bprinicipal\b/principal/g -s/\bprivalege\b/privilege/g -s/\bprivaleges\b/privileges/g -s/\bpriveledges\b/privileges/g -s/\bprivelege\b/privilege/g -s/\bpriveleged\b/privileged/g -s/\bpriveleges\b/privileges/g -s/\bprivelige\b/privilege/g -s/\bpriveliged\b/privileged/g -s/\bpriveliges\b/privileges/g -s/\bprivelleges\b/privileges/g -s/\bprivilage\b/privilege/g -s/\bpriviledge\b/privilege/g -s/\bpriviledges\b/privileges/g -s/\bprivledge\b/privilege/g -s/\bprivte\b/private/g -s/\bprobabilaty\b/probability/g -s/\bprobablistic\b/probabilistic/g -s/\bprobablly\b/probably/g -s/\bprobalibity\b/probability/g -s/\bprobaly\b/probably/g -s/\bprobelm\b/problem/g -s/\bproccess\b/process/g -s/\bproccessing\b/processing/g -s/\bprocedger\b/procedure/g -s/\bprocedings\b/proceedings/g -s/\bproceedure\b/procedure/g -s/\bproces\b/process/g -s/\bprocesser\b/processor/g -s/\bproclaimation\b/proclamation/g -s/\bproclamed\b/proclaimed/g -s/\bproclaming\b/proclaiming/g -s/\bproclomation\b/proclamation/g -s/\bprofesor\b/professor/g -s/\bprofesser\b/professor/g -s/\bproffesed\b/professed/g -s/\bproffesion\b/profession/g -s/\bproffesional\b/professional/g -s/\bproffesor\b/professor/g -s/\bprofilic\b/prolific/g -s/\bprogessed\b/progressed/g -s/\bprogidy\b/prodigy/g -s/\bprogramable\b/programmable/g -s/\bprohabition\b/prohibition/g -s/\bprologomena\b/prolegomena/g -s/\bprominance\b/prominence/g -s/\bprominant\b/prominent/g -s/\bprominantly\b/prominently/g -s/\bpromiscous\b/promiscuous/g -s/\bpromotted\b/promoted/g -s/\bpronomial\b/pronominal/g -s/\bpronouced\b/pronounced/g -s/\bpronounched\b/pronounced/g -s/\bpronounciation\b/pronunciation/g -s/\bproove\b/prove/g -s/\bprooved\b/proved/g -s/\bprophacy\b/prophecy/g -s/\bpropietary\b/proprietary/g -s/\bpropmted\b/prompted/g -s/\bpropoganda\b/propaganda/g -s/\bpropogate\b/propagate/g -s/\bpropogates\b/propagates/g -s/\bpropogation\b/propagation/g -s/\bpropostion\b/proposition/g -s/\bpropotions\b/proportions/g -s/\bpropper\b/proper/g -s/\bpropperly\b/properly/g -s/\bproprietory\b/proprietary/g -s/\bproseletyzing\b/proselytizing/g -s/\bprotaganist\b/protagonist/g -s/\bprotaganists\b/protagonists/g -s/\bprotocal\b/protocol/g -s/\bprotoganist\b/protagonist/g -s/\bprotrayed\b/portrayed/g -s/\bprotruberance\b/protuberance/g -s/\bprotruberances\b/protuberances/g -s/\bprouncements\b/pronouncements/g -s/\bprovacative\b/provocative/g -s/\bprovded\b/provided/g -s/\bprovicial\b/provincial/g -s/\bprovinicial\b/provincial/g -s/\bprovisiosn\b/provision/g -s/\bprovisonal\b/provisional/g -s/\bproximty\b/proximity/g -s/\bpseudononymous\b/pseudonymous/g -s/\bpseudonyn\b/pseudonym/g -s/\bpsuedo\b/pseudo/g -s/\bpsycology\b/psychology/g -s/\bpsyhic\b/psychic/g -s/\bpubilsher\b/publisher/g -s/\bpubisher\b/publisher/g -s/\bpubliaher\b/publisher/g -s/\bpublically\b/publicly/g -s/\bpublicaly\b/publicly/g -s/\bpublicher\b/publisher/g -s/\bpublihser\b/publisher/g -s/\bpublisehr\b/publisher/g -s/\bpubliser\b/publisher/g -s/\bpublisger\b/publisher/g -s/\bpublisheed\b/published/g -s/\bpublisherr\b/publisher/g -s/\bpublishher\b/publisher/g -s/\bpublishor\b/publisher/g -s/\bpublishre\b/publisher/g -s/\bpublissher\b/publisher/g -s/\bpubllisher\b/publisher/g -s/\bpublsiher\b/publisher/g -s/\bpublusher\b/publisher/g -s/\bpuchasing\b/purchasing/g -s/\bPucini\b/Puccini/g -s/\bPuertorrican\b/Puerto Rican/g -s/\bPuertorricans\b/Puerto Ricans/g -s/\bpulisher\b/publisher/g -s/\bpumkin\b/pumpkin/g -s/\bpuplisher\b/publisher/g -s/\bpuritannical\b/puritanical/g -s/\bpurposedly\b/purposely/g -s/\bpurpotedly\b/purportedly/g -s/\bpursuade\b/persuade/g -s/\bpursuaded\b/persuaded/g -s/\bpursuades\b/persuades/g -s/\bpususading\b/persuading/g -s/\bputing\b/putting/g -s/\bpwoer\b/power/g -s/\bpyscic\b/psychic/g -s/\bquantaty\b/quantity/g -s/\bquantitiy\b/quantity/g -s/\bquarantaine\b/quarantine/g -s/\bQueenland\b/Queensland/g -s/\bquestonable\b/questionable/g -s/\bquicklyu\b/quickly/g -s/\bquinessential\b/quintessential/g -s/\bquitted\b/quit/g -s/\bquizes\b/quizzes/g -s/\brabinnical\b/rabbinical/g -s/\bracaus\b/raucous/g -s/\bradiactive\b/radioactive/g -s/\bradify\b/ratify/g -s/\braelly\b/really/g -s/\brarified\b/rarefied/g -s/\breaccurring\b/recurring/g -s/\breacing\b/reaching/g -s/\breacll\b/recall/g -s/\breadmition\b/readmission/g -s/\brealitvely\b/relatively/g -s/\brealsitic\b/realistic/g -s/\brealtions\b/relations/g -s/\brealy\b/really/g -s/\brealyl\b/really/g -s/\breasearch\b/research/g -s/\brebiulding\b/rebuilding/g -s/\brebllions\b/rebellions/g -s/\brebounce\b/rebound/g -s/\breccomend\b/recommend/g -s/\breccomendations\b/recommendations/g -s/\breccomended\b/recommended/g -s/\breccomending\b/recommending/g -s/\breccommend\b/recommend/g -s/\breccommended\b/recommended/g -s/\breccommending\b/recommending/g -s/\breccuring\b/recurring/g -s/\breceeded\b/receded/g -s/\breceeding\b/receding/g -s/\breceivedfrom\b/received from/g -s/\brecepient\b/recipient/g -s/\brecepients\b/recipients/g -s/\breceving\b/receiving/g -s/\brechargable\b/rechargeable/g -s/\breched\b/reached/g -s/\brecide\b/reside/g -s/\brecided\b/resided/g -s/\brecident\b/resident/g -s/\brecidents\b/residents/g -s/\breciding\b/residing/g -s/\breciepents\b/recipients/g -s/\breciept\b/receipt/g -s/\brecieve\b/receive/g -s/\brecieved\b/received/g -s/\breciever\b/receiver/g -s/\brecievers\b/receivers/g -s/\brecieves\b/receives/g -s/\brecieving\b/receiving/g -s/\brecipiant\b/recipient/g -s/\brecipiants\b/recipients/g -s/\brecived\b/received/g -s/\brecivership\b/receivership/g -s/\brecogise\b/recognise/g -s/\brecogize\b/recognize/g -s/\brecomend\b/recommend/g -s/\brecomended\b/recommended/g -s/\brecomending\b/recommending/g -s/\brecomends\b/recommends/g -s/\brecommedations\b/recommendations/g -s/\brecompence\b/recompense/g -s/\breconaissance\b/reconnaissance/g -s/\breconcilation\b/reconciliation/g -s/\breconized\b/recognized/g -s/\breconnaisance\b/reconnaissance/g -s/\breconnaissence\b/reconnaissance/g -s/\brecontructed\b/reconstructed/g -s/\brecordproducer\b/record producer/g -s/\brecquired\b/required/g -s/\brecrational\b/recreational/g -s/\brecrod\b/record/g -s/\brecuiting\b/recruiting/g -s/\brecuring\b/recurring/g -s/\brecurrance\b/recurrence/g -s/\brediculous\b/ridiculous/g -s/\breedeming\b/redeeming/g -s/\breenforced\b/reinforced/g -s/\brefect\b/reflect/g -s/\brefedendum\b/referendum/g -s/\breferal\b/referral/g -s/\breferece\b/reference/g -s/\brefereces\b/references/g -s/\brefered\b/referred/g -s/\breferemce\b/reference/g -s/\breferemces\b/references/g -s/\breferencs\b/references/g -s/\breferenece\b/reference/g -s/\brefereneced\b/referenced/g -s/\brefereneces\b/references/g -s/\breferiang\b/referring/g -s/\brefering\b/referring/g -s/\brefernce\b/reference/g -s/\brefernce\b/references/g -s/\brefernces\b/references/g -s/\breferrence\b/reference/g -s/\breferrences\b/references/g -s/\breferrs\b/refers/g -s/\breffered\b/referred/g -s/\brefference\b/reference/g -s/\breffering\b/referring/g -s/\brefrence\b/reference/g -s/\brefrences\b/references/g -s/\brefrers\b/refers/g -s/\brefridgeration\b/refrigeration/g -s/\brefridgerator\b/refrigerator/g -s/\brefromist\b/reformist/g -s/\brefusla\b/refusal/g -s/\bregardes\b/regards/g -s/\bregluar\b/regular/g -s/\breguarly\b/regularly/g -s/\bregulaion\b/regulation/g -s/\bregulaotrs\b/regulators/g -s/\bregularily\b/regularly/g -s/\brehersal\b/rehearsal/g -s/\breicarnation\b/reincarnation/g -s/\breigining\b/reigning/g -s/\breknown\b/renown/g -s/\breknowned\b/renowned/g -s/\brela\b/real/g -s/\brelaly\b/really/g -s/\brelatiopnship\b/relationship/g -s/\brelativly\b/relatively/g -s/\brelected\b/reelected/g -s/\breleive\b/relieve/g -s/\breleived\b/relieved/g -s/\breleiver\b/reliever/g -s/\breleses\b/releases/g -s/\brelevence\b/relevance/g -s/\brelevent\b/relevant/g -s/\breliablity\b/reliability/g -s/\brelient\b/reliant/g -s/\breligeous\b/religious/g -s/\breligous\b/religious/g -s/\breligously\b/religiously/g -s/\brelinqushment\b/relinquishment/g -s/\brelitavely\b/relatively/g -s/\brelpacement\b/replacement/g -s/\bremaing\b/remaining/g -s/\bremeber\b/remember/g -s/\brememberable\b/memorable/g -s/\brememberance\b/remembrance/g -s/\bremembrence\b/remembrance/g -s/\bremenant\b/remnant/g -s/\bremenicent\b/reminiscent/g -s/\breminent\b/remnant/g -s/\breminescent\b/reminiscent/g -s/\breminscent\b/reminiscent/g -s/\breminsicent\b/reminiscent/g -s/\brendevous\b/rendezvous/g -s/\brendezous\b/rendezvous/g -s/\brenedered\b/rende/g -s/\brenewl\b/renewal/g -s/\brennovate\b/renovate/g -s/\brennovated\b/renovated/g -s/\brennovating\b/renovating/g -s/\brennovation\b/renovation/g -s/\brentors\b/renters/g -s/\breoccurrence\b/recurrence/g -s/\breorganision\b/reorganisation/g -s/\brepblic\b/republic/g -s/\brepblican\b/republican/g -s/\brepblicans\b/republicans/g -s/\brepblics\b/republics/g -s/\brepectively\b/respectively/g -s/\brepeition\b/repetition/g -s/\brepentence\b/repentance/g -s/\brepentent\b/repentant/g -s/\brepeteadly\b/repeatedly/g -s/\brepetion\b/repetition/g -s/\brepid\b/rapid/g -s/\brapdily\b/rapidily/g -s/\breponse\b/response/g -s/\breponsible\b/responsible/g -s/\breportadly\b/reportedly/g -s/\brepresantative\b/representative/g -s/\brepresentive\b/representative/g -s/\brepresentives\b/representatives/g -s/\breproducable\b/reproducible/g -s/\breprtoire\b/repertoire/g -s/\brepsectively\b/respectively/g -s/\breptition\b/repetition/g -s/\brepubic\b/republic/g -s/\brepubican\b/republican/g -s/\brepubicans\b/republicans/g -s/\brepubics\b/republics/g -s/\brepubli\b/republic/g -s/\brepublian\b/republican/g -s/\brepublians\b/republicans/g -s/\brepublis\b/republics/g -s/\brepulic\b/republic/g -s/\brepulican\b/republican/g -s/\brepulicans\b/republicans/g -s/\brepulics\b/republics/g -s/\brequirment\b/requirement/g -s/\brequred\b/required/g -s/\bresaurant\b/restaurant/g -s/\bresembelance\b/resemblance/g -s/\bresembes\b/resembles/g -s/\bresemblence\b/resemblance/g -s/\bresevoir\b/reservoir/g -s/\bresidental\b/residential/g -s/\bresignement\b/resignment/g -s/\bresistable\b/resistible/g -s/\bresistence\b/resistance/g -s/\bresistent\b/resistant/g -s/\brespectivly\b/respectively/g -s/\bresponce\b/response/g -s/\bresponibilities\b/responsibilities/g -s/\bresponisble\b/responsible/g -s/\bresponnsibilty\b/responsibility/g -s/\bresponsability\b/responsibility/g -s/\bresponsibile\b/responsible/g -s/\bresponsibilites\b/responsibilities/g -s/\bresponsiblities\b/responsibilities/g -s/\bresponsiblity\b/responsibility/g -s/\bressemblance\b/resemblance/g -s/\bressemble\b/resemble/g -s/\bressembled\b/resembled/g -s/\bressemblence\b/resemblance/g -s/\bressembling\b/resembling/g -s/\bresssurecting\b/resurrecting/g -s/\bressurect\b/resurrect/g -s/\bressurected\b/resurrected/g -s/\bressurection\b/resurrection/g -s/\bressurrection\b/resurrection/g -s/\brestarant\b/restaurant/g -s/\brestarants\b/restaurants/g -s/\brestaraunt\b/restaurant/g -s/\brestaraunteur\b/restaurateur/g -s/\brestaraunteurs\b/restaurateurs/g -s/\brestaraunts\b/restaurants/g -s/\brestauranteurs\b/restaurateurs/g -s/\brestauration\b/restoration/g -s/\brestauraunt\b/restaurant/g -s/\bresteraunt\b/restaurant/g -s/\bresteraunts\b/restaurants/g -s/\bresticted\b/restricted/g -s/\bresturant\b/restaurant/g -s/\bresturants\b/restaurants/g -s/\bresturaunt\b/restaurant/g -s/\bresturaunts\b/restaurants/g -s/\bresurecting\b/resurrecting/g -s/\bretalitated\b/retaliated/g -s/\bretalitation\b/retaliation/g -s/\bretreive\b/retrieve/g -s/\breturnd\b/returned/g -s/\brevaluated\b/reevaluated/g -s/\breveiw\b/review/g -s/\breveral\b/reversal/g -s/\breversable\b/reversible/g -s/\brevolutionar\b/revolutionary/g -s/\brewitten\b/rewritten/g -s/\brewriet\b/rewrite/g -s/\brference\b/reference/g -s/\brferences\b/references/g -s/\brhymme\b/rhyme/g -s/\brhythem\b/rhythm/g -s/\brhythim\b/rhythm/g -s/\brhytmic\b/rhythmic/g -s/\brigourous\b/rigorous/g -s/\brininging\b/ringing/g -s/\bRockerfeller\b/Rockefeller/g -s/\brococco\b/rococo/g -s/\brocord\b/record/g -s/\broomate\b/roommate/g -s/\brougly\b/roughly/g -s/\brucuperate\b/recuperate/g -s/\brudimentatry\b/rudimentary/g -s/\brulle\b/rule/g -s/\bruning\b/running/g -s/\brunnung\b/running/g -s/\brussina\b/Russian/g -s/\bRussion\b/Russian/g -s/\brwite\b/write/g -s/\brythem\b/rhythm/g -s/\brythim\b/rhythm/g -s/\brythm\b/rhythm/g -s/\brythmic\b/rhythmic/g -s/\brythyms\b/rhythms/g -s/\bsacrafice\b/sacrifice/g -s/\bsacreligious\b/sacrilegious/g -s/\bSacremento\b/Sacramento/g -s/\bsacrifical\b/sacrificial/g -s/\bsaftey\b/safety/g -s/\bsafty\b/safety/g -s/\bsalery\b/salary/g -s/\bsanctionning\b/sanctioning/g -s/\bsandwhich\b/sandwich/g -s/\bSanhedrim\b/Sanhedrin/g -s/\bsantioned\b/sanctioned/g -s/\bsargant\b/sergeant/g -s/\bsargeant\b/sergeant/g -s/\bsatelite\b/satellite/g -s/\bsatelites\b/satellites/g -s/\bSaterday\b/Saturday/g -s/\bSaterdays\b/Saturdays/g -s/\bsatisfactority\b/satisfactorily/g -s/\bsatric\b/satiric/g -s/\bsatrical\b/satirical/g -s/\bsatrically\b/satirically/g -s/\bsattelite\b/satellite/g -s/\bsattelites\b/satellites/g -s/\bsaught\b/sought/g -s/\bsaveing\b/saving/g -s/\bsaxaphone\b/saxophone/g -s/\bscaleable\b/scalable/g -s/\bscandanavia\b/Scandinavia/g -s/\bscaricity\b/scarcity/g -s/\bscavanged\b/scavenged/g -s/\bschedual\b/schedule/g -s/\bscholarhip\b/scholarship/g -s/\bscientfic\b/scientific/g -s/\bscientifc\b/scientific/g -s/\bscientis\b/scientist/g -s/\bscince\b/science/g -s/\bscinece\b/science/g -s/\bscirpt\b/script/g -s/\bscoll\b/scroll/g -s/\bscreenwrighter\b/screenwriter/g -s/\bscrutinity\b/scrutiny/g -s/\bscuptures\b/sculptures/g -s/\bseach\b/search/g -s/\bseached\b/searched/g -s/\bseaches\b/searches/g -s/\bsecratary\b/secretary/g -s/\bsecretery\b/secretary/g -s/\bsedereal\b/sidereal/g -s/\bseeked\b/sought/g -s/\bsegementation\b/segmentation/g -s/\bseguoys\b/segues/g -s/\bseige\b/siege/g -s/\bseing\b/seeing/g -s/\bseinor\b/senior/g -s/\bseldomly\b/seldom/g -s/\bsenarios\b/scenarios/g -s/\bsenstive\b/sensitive/g -s/\bsensure\b/censure/g -s/\bseperate\b/separate/g -s/\bseperated\b/separated/g -s/\bseperately\b/separately/g -s/\bseperates\b/separates/g -s/\bseperating\b/separating/g -s/\bseperation\b/separation/g -s/\bseperatism\b/separatism/g -s/\bseperatist\b/separatist/g -s/\bsepina\b/subpoena/g -s/\bsergent\b/sergeant/g -s/\bsettelement\b/settlement/g -s/\bsettlment\b/settlement/g -s/\bsevereal\b/several/g -s/\bseverley\b/severely/g -s/\bseverly\b/severely/g -s/\bsevice\b/service/g -s/\bshadasloo\b/shadaloo/g -s/\bshaddow\b/shadow/g -s/\bshadoloo\b/shadaloo/g -s/\bsheild\b/shield/g -s/\bsherif\b/sheriff/g -s/\bshineing\b/shining/g -s/\bshiped\b/shipped/g -s/\bshiping\b/shipping/g -s/\bshopkeeepers\b/shopkeepers/g -s/\bshorly\b/shortly/g -s/\bshortwhile\b/short while/g -s/\bshoudl\b/should/g -s/\bshouldnt\b/should not/g -s/\bshreak\b/shriek/g -s/\bshrinked\b/shrunk/g -s/\bsicne\b/since/g -s/\bsideral\b/sidereal/g -s/\bsiezure\b/seizure/g -s/\bsiezures\b/seizures/g -s/\bsiginificant\b/significant/g -s/\bsignficant\b/significant/g -s/\bsignficiant\b/significant/g -s/\bsignfies\b/signifies/g -s/\bsignifantly\b/significantly/g -s/\bsignificently\b/significantly/g -s/\bsignifigant\b/significant/g -s/\bsignifigantly\b/significantly/g -s/\bsignitories\b/signatories/g -s/\bsignitory\b/signatory/g -s/\bsimilarily\b/similarly/g -s/\bsimiliar\b/similar/g -s/\bsimiliarity\b/similarity/g -s/\bsimiliarly\b/similarly/g -s/\bsimmilar\b/similar/g -s/\bsimpley\b/simply/g -s/\bsimplier\b/simpler/g -s/\bsimultanous\b/simultaneous/g -s/\bsimultanously\b/simultaneously/g -s/\bsincerley\b/sincerely/g -s/\bsingsog\b/singsong/g -s/\bSionist\b/Zionist/g -s/\bSionists\b/Zionists/g -s/\bSixtin\b/Sistine/g -s/\bSkagerak\b/Skagerrak/g -s/\bskateing\b/skating/g -s/\bslaugterhouses\b/slaughterhouses/g -s/\bslighly\b/slightly/g -s/\bslippy\b/slippery/g -s/\bslowy\b/slowly/g -s/\bsmae\b/same/g -s/\bsmealting\b/smelting/g -s/\bsmoe\b/some/g -s/\bsneeks\b/sneaks/g -s/\bsnese\b/sneeze/g -s/\bsocalism\b/socialism/g -s/\bsocities\b/societies/g -s/\bsoem\b/some/g -s/\bsofware\b/software/g -s/\bsohw\b/show/g -s/\bsoilders\b/soldiers/g -s/\bsolatary\b/solitary/g -s/\bsoley\b/solely/g -s/\bsoliders\b/soldiers/g -s/\bsoliliquy\b/soliloquy/g -s/\bsoluable\b/soluble/g -s/\bsomene\b/someone/g -s/\bsomtimes\b/sometimes/g -s/\bsomwhere\b/somewhere/g -s/\bsophicated\b/sophisticated/g -s/\bsophmore\b/sophomore/g -s/\bsorceror\b/sorcerer/g -s/\bsorrounding\b/surrounding/g -s/\bsotry\b/story/g -s/\bsoudn\b/sound/g -s/\bsoudns\b/sounds/g -s/\bsountrack\b/soundtrack/g -s/\bsourth\b/south/g -s/\bsourthern\b/southern/g -s/\bsouvenier\b/souvenir/g -s/\bsouveniers\b/souvenirs/g -s/\bsoveits\b/soviets/g -s/\bsovereignity\b/sovereignty/g -s/\bsoverign\b/sovereign/g -s/\bsoverignity\b/sovereignty/g -s/\bsoverignty\b/sovereignty/g -s/\bspainish\b/Spanish/g -s/\bspeach\b/speech/g -s/\bspecfic\b/specific/g -s/\bspecifiying\b/specifying/g -s/\bspeciman\b/specimen/g -s/\bspectauclar\b/spectacular/g -s/\bspectaulars\b/spectaculars/g -s/\bspectum\b/spectrum/g -s/\bspeices\b/species/g -s/\bspendour\b/splendour/g -s/\bspermatozoan\b/spermatozoon/g -s/\bspoace\b/space/g -s/\bsponser\b/sponsor/g -s/\bsponsered\b/sponsored/g -s/\bspontanous\b/spontaneous/g -s/\bsponzored\b/sponsored/g -s/\bspoonfulls\b/spoonfuls/g -s/\bsppeches\b/speeches/g -s/\bspreaded\b/spread/g -s/\bsprech\b/speech/g -s/\bspred\b/spread/g -s/\bspriritual\b/spiritual/g -s/\bspritual\b/spiritual/g -s/\bsqaure\b/square/g -s/\bstablility\b/stability/g -s/\bstainlees\b/stainless/g -s/\bstaion\b/station/g -s/\bstandars\b/standards/g -s/\bstange\b/strange/g -s/\bstartegic\b/strategic/g -s/\bstartegies\b/strategies/g -s/\bstartegy\b/strategy/g -s/\bstateman\b/statesman/g -s/\bstatememts\b/statements/g -s/\bstatment\b/statement/g -s/\bsteriods\b/steroids/g -s/\bsterotypes\b/stereotypes/g -s/\bstilus\b/stylus/g -s/\bstingent\b/stringent/g -s/\bstiring\b/stirring/g -s/\bstirrs\b/stirs/g -s/\bstlye\b/style/g -s/\bstomache\b/stomach/g -s/\bstong\b/strong/g -s/\bstopry\b/story/g -s/\bstoreis\b/stories/g -s/\bstorise\b/stories/g -s/\bstornegst\b/strongest/g -s/\bstoyr\b/story/g -s/\bstpo\b/stop/g -s/\bstradegies\b/strategies/g -s/\bstradegy\b/strategy/g -s/\bstratagically\b/strategically/g -s/\bstreemlining\b/streamlining/g -s/\bstregth\b/strength/g -s/\bstrenghen\b/strengthen/g -s/\bstrenghened\b/strengthened/g -s/\bstrenghening\b/strengthening/g -s/\bstrenght\b/strength/g -s/\bstrenghten\b/strengthen/g -s/\bstrenghtened\b/strengthened/g -s/\bstrenghtening\b/strengthening/g -s/\bstrengtened\b/strengthened/g -s/\bstrenous\b/strenuous/g -s/\bstrictist\b/strictest/g -s/\bstrikely\b/strikingly/g -s/\bstrnad\b/strand/g -s/\bstructual\b/structural/g -s/\bstubborness\b/stubbornness/g -s/\bstucture\b/structure/g -s/\bstuctured\b/structured/g -s/\bstuddy\b/study/g -s/\bstuding\b/studying/g -s/\bstuggling\b/struggling/g -s/\bsturcture\b/structure/g -s/\bsubcatagories\b/subcategories/g -s/\bsubcatagory\b/subcategory/g -s/\bsubconsiously\b/subconsciously/g -s/\bsubjudgation\b/subjugation/g -s/\bsubmachne\b/submachine/g -s/\bsubpecies\b/subspecies/g -s/\bsubsidary\b/subsidiary/g -s/\bsubsiduary\b/subsidiary/g -s/\bsubsquent\b/subsequent/g -s/\bsubsquently\b/subsequently/g -s/\bsubstace\b/substance/g -s/\bsubstancial\b/substantial/g -s/\bsubstatial\b/substantial/g -s/\bsubstituded\b/substituted/g -s/\bsubstract\b/subtract/g -s/\bsubstracted\b/subtracted/g -s/\bsubstracting\b/subtracting/g -s/\bsubstraction\b/subtraction/g -s/\bsubstracts\b/subtracts/g -s/\bsubtances\b/substances/g -s/\bsubterranian\b/subterranean/g -s/\bsuburburban\b/suburban/g -s/\bsuccceeded\b/succeeded/g -s/\bsucccesses\b/successes/g -s/\bsuccedded\b/succeeded/g -s/\bsucceded\b/succeeded/g -s/\bsucceds\b/succeeds/g -s/\bsuccesful\b/successful/g -s/\bsuccesfully\b/successfully/g -s/\bsuccesfuly\b/successfully/g -s/\bsuccesion\b/succession/g -s/\bsuccesive\b/successive/g -s/\bsuccessfull\b/successful/g -s/\bsuccessully\b/successfully/g -s/\bsuccsess\b/success/g -s/\bsuccsessfull\b/successful/g -s/\bsuceed\b/succeed/g -s/\bsuceeded\b/succeeded/g -s/\bsuceeding\b/succeeding/g -s/\bsuceeds\b/succeeds/g -s/\bsucesful\b/successful/g -s/\bsucesfully\b/successfully/g -s/\bsucesfuly\b/successfully/g -s/\bsucesion\b/succession/g -s/\bsucess\b/success/g -s/\bsucesses\b/successes/g -s/\bsucessful\b/successful/g -s/\bsucessfull\b/successful/g -s/\bsucessfully\b/successfully/g -s/\bsucessfuly\b/successfully/g -s/\bsucession\b/succession/g -s/\bsucessive\b/successive/g -s/\bsucessor\b/successor/g -s/\bsucessot\b/successor/g -s/\bsucide\b/suicide/g -s/\bsucidial\b/suicidal/g -s/\bsudent\b/student/g -s/\bsudents\b/students/g -s/\bsufferage\b/suffrage/g -s/\bsufferred\b/suffered/g -s/\bsufferring\b/suffering/g -s/\bsufficent\b/sufficient/g -s/\bsufficently\b/sufficiently/g -s/\bsumary\b/summary/g -s/\bsunglases\b/sunglasses/g -s/\bsuop\b/soup/g -s/\bsuperceeded\b/superseded/g -s/\bsuperintendant\b/superintendent/g -s/\bsuphisticated\b/sophisticated/g -s/\bsuplimented\b/supplemented/g -s/\bsupose\b/suppose/g -s/\bsuposed\b/supposed/g -s/\bsuposedly\b/supposedly/g -s/\bsuposes\b/supposes/g -s/\bsuposing\b/supposing/g -s/\bsupplamented\b/supplemented/g -s/\bsuppliementing\b/supplementing/g -s/\bsuppoed\b/supposed/g -s/\bsupposingly\b/supposedly/g -s/\bsuppy\b/supply/g -s/\bsuprassing\b/surpassing/g -s/\bsupress\b/suppress/g -s/\bsupressed\b/suppressed/g -s/\bsupresses\b/suppresses/g -s/\bsupressing\b/suppressing/g -s/\bsuprise\b/surprise/g -s/\bsuprised\b/surprised/g -s/\bsuprising\b/surprising/g -s/\bsuprisingly\b/surprisingly/g -s/\bsuprize\b/surprise/g -s/\bsuprized\b/surprised/g -s/\bsuprizing\b/surprising/g -s/\bsuprizingly\b/surprisingly/g -s/\bsurfce\b/surface/g -s/\bsuround\b/surround/g -s/\bsurounded\b/surrounded/g -s/\bsurounding\b/surrounding/g -s/\bsuroundings\b/surroundings/g -s/\bsurounds\b/surrounds/g -s/\bsurplanted\b/supplanted/g -s/\bsurpress\b/suppress/g -s/\bsurpressed\b/suppressed/g -s/\bsurprize\b/surprise/g -s/\bsurprized\b/surprised/g -s/\bsurprizing\b/surprising/g -s/\bsurprizingly\b/surprisingly/g -s/\bsurrepetitious\b/surreptitious/g -s/\bsurrepetitiously\b/surreptitiously/g -s/\bsurreptious\b/surreptitious/g -s/\bsurreptiously\b/surreptitiously/g -s/\bsurronded\b/surrounded/g -s/\bsurrouded\b/surrounded/g -s/\bsurrouding\b/surrounding/g -s/\bsurrundering\b/surrendering/g -s/\bsurveilence\b/surveillance/g -s/\bsurveill\b/surveil/g -s/\bsurveyer\b/surveyor/g -s/\bsurviver\b/survivor/g -s/\bsurvivers\b/survivors/g -s/\bsurvivied\b/survived/g -s/\bsuseptable\b/susceptible/g -s/\bsuseptible\b/susceptible/g -s/\bsuspention\b/suspension/g -s/\bswaer\b/swear/g -s/\bswaers\b/swears/g -s/\bswepth\b/swept/g -s/\bswiming\b/swimming/g -s/\bsyas\b/says/g -s/\bsymetrical\b/symmetrical/g -s/\bsymetrically\b/symmetrically/g -s/\bsymetry\b/symmetry/g -s/\bsymettric\b/symmetric/g -s/\bsymmetral\b/symmetric/g -s/\bsymmetricaly\b/symmetrically/g -s/\bsynagouge\b/synagogue/g -s/\bsyncronization\b/synchronization/g -s/\bsynonomous\b/synonymous/g -s/\bsynonymns\b/synonyms/g -s/\bsynphony\b/symphony/g -s/\bsyphyllis\b/syphilis/g -s/\bsypmtoms\b/symptoms/g -s/\bsyrap\b/syrup/g -s/\bsysmatically\b/systematically/g -s/\bsytem\b/system/g -s/\bsytle\b/style/g -s/\btabacco\b/tobacco/g -s/\btahn\b/than/g -s/\btaht\b/that/g -s/\btalekd\b/talked/g -s/\btargetted\b/targeted/g -s/\btargetting\b/targeting/g -s/\btast\b/taste/g -s/\btath\b/that/g -s/\btatoo\b/tattoo/g -s/\btattooes\b/tattoos/g -s/\btaxanomic\b/taxonomic/g -s/\btaxanomy\b/taxonomy/g -s/\bteached\b/taught/g -s/\btechician\b/technician/g -s/\btechicians\b/technicians/g -s/\btechiniques\b/techniques/g -s/\btechnitian\b/technician/g -s/\btechnnology\b/technology/g -s/\btechnolgy\b/technology/g -s/\bteh\b/the/g -s/\btehy\b/they/g -s/\btelelevision\b/television/g -s/\btelevsion\b/television/g -s/\btelphony\b/telephony/g -s/\btemerature\b/temperature/g -s/\btempalte\b/template/g -s/\btempaltes\b/templates/g -s/\btemparate\b/temperate/g -s/\btemperarily\b/temporarily/g -s/\btemperment\b/temperament/g -s/\btempertaure\b/temperature/g -s/\btemperture\b/temperature/g -s/\btemprary\b/temporary/g -s/\btenacle\b/tentacle/g -s/\btenacles\b/tentacles/g -s/\btendacy\b/tendency/g -s/\btendancies\b/tendencies/g -s/\btendancy\b/tendency/g -s/\btennisplayer\b/tennis player/g -s/\btepmorarily\b/temporarily/g -s/\bterrestial\b/terrestrial/g -s/\bterriories\b/territories/g -s/\bterriory\b/territory/g -s/\bterritorist\b/terrorist/g -s/\bterritoy\b/territory/g -s/\bterroist\b/terrorist/g -s/\btesticlular\b/testicular/g -s/\btestomony\b/testimony/g -s/\btghe\b/the/g -s/\btheather\b/theater/g -s/\btheese\b/these/g -s/\btheif\b/thief/g -s/\btheives\b/thieves/g -s/\bthemselfs\b/themselves/g -s/\bthemslves\b/themselves/g -s/\btherafter\b/thereafter/g -s/\btherby\b/thereby/g -s/\btheri\b/their/g -s/\btheyre\b/they're/g -s/\bthgat\b/that/g -s/\bthge\b/the/g -s/\bthier\b/their/g -s/\bthign\b/thing/g -s/\bthigns\b/things/g -s/\bthigsn\b/things/g -s/\bthikn\b/think/g -s/\bthikns\b/thinks/g -s/\bthiunk\b/think/g -s/\bthn\b/then/g -s/\bthna\b/than/g -s/\bthne\b/then/g -s/\bthnig\b/thing/g -s/\bthnigs\b/things/g -s/\bthoughout\b/throughout/g -s/\bthreatend\b/threatened/g -s/\bthreatning\b/threatening/g -s/\bthreee\b/three/g -s/\bthreshhold\b/threshold/g -s/\bthrid\b/third/g -s/\bthrorough\b/thorough/g -s/\bthroughly\b/thoroughly/g -s/\bthrougout\b/throughout/g -s/\bthru\b/through/g -s/\bthsi\b/this/g -s/\bthsoe\b/those/g -s/\bthta\b/that/g -s/\bthyat\b/that/g -s/\btihkn\b/think/g -s/\btihs\b/this/g -s/\btimne\b/time/g -s/\btje\b/the/g -s/\btjhe\b/the/g -s/\btjpanishad\b/upanishad/g -s/\btkae\b/take/g -s/\btkaes\b/takes/g -s/\btkaing\b/taking/g -s/\btlaking\b/talking/g -s/\btobbaco\b/tobacco/g -s/\btodays\b/today's/g -s/\btodya\b/today/g -s/\btoghether\b/together/g -s/\btoke\b/took/g -s/\btolerence\b/tolerance/g -s/\bTolkein\b/Tolkien/g -s/\btomatos\b/tomatoes/g -s/\btommorow\b/tomorrow/g -s/\btommorrow\b/tomorrow/g -s/\btongiht\b/tonight/g -s/\btoriodal\b/toroidal/g -s/\btormenters\b/tormentors/g -s/\btornadoe\b/tornado/g -s/\btorpeados\b/torpedoes/g -s/\btorpedos\b/torpedoes/g -s/\btortise \b/tortoise/g -s/\btothe\b/to the/g -s/\btoubles\b/troubles/g -s/\btounge\b/tongue/g -s/\btowords\b/towards/g -s/\btowrad\b/toward/g -s/\btradionally\b/traditionally/g -s/\btraditionaly\b/traditionally/g -s/\btraditionnal\b/traditional/g -s/\btraditition\b/tradition/g -s/\btradtionally\b/traditionally/g -s/\btrafficed\b/trafficked/g -s/\btrafficing\b/trafficking/g -s/\btrafic\b/traffic/g -s/\btrancendent\b/transcendent/g -s/\btrancending\b/transcending/g -s/\btranform\b/transform/g -s/\btranformed\b/transformed/g -s/\btranscendance\b/transcendence/g -s/\btranscendant\b/transcendent/g -s/\btranscendentational\b/transcendental/g -s/\btransending\b/transcending/g -s/\btransesxuals\b/transsexuals/g -s/\btransfered\b/transferred/g -s/\btransfering\b/transferring/g -s/\btransformaton\b/transformation/g -s/\btransistion\b/transition/g -s/\btranslater\b/translator/g -s/\btranslaters\b/translators/g -s/\btransmissable\b/transmissible/g -s/\btransporation\b/transportation/g -s/\btremelo\b/tremolo/g -s/\btremelos\b/tremolos/g -s/\btriguered\b/triggered/g -s/\btriology\b/trilogy/g -s/\btroling\b/trolling/g -s/\btroup\b/troupe/g -s/\btruely\b/truly/g -s/\btrustworthyness\b/trustworthiness/g -s/\bTuscon\b/Tucson/g -s/\btust\b/trust/g -s/\btwelth\b/twelfth/g -s/\btwon\b/town/g -s/\btwpo\b/two/g -s/\btyhat\b/that/g -s/\btyhe\b/they/g -s/\btypcial\b/typical/g -s/\btypicaly\b/typically/g -s/\btyranies\b/tyrannies/g -s/\btyrany\b/tyranny/g -s/\btyrranies\b/tyrannies/g -s/\btyrrany\b/tyranny/g -s/\bubiquitious\b/ubiquitous/g -s/\bublisher\b/publisher/g -s/\buise\b/use/g -s/\bUkranian\b/Ukrainian/g -s/\bultimely\b/ultimately/g -s/\bunacompanied\b/unaccompanied/g -s/\bunahppy\b/unhappy/g -s/\bunanymous\b/unanimous/g -s/\bunathorised\b/unauthorised/g -s/\bunavailible\b/unavailable/g -s/\bunballance\b/unbalance/g -s/\bunbeknowst\b/unbeknownst/g -s/\bunbeleivable\b/unbelievable/g -s/\buncertainity\b/uncertainty/g -s/\bunchallengable\b/unchallengeable/g -s/\bunchangable\b/unchangeable/g -s/\buncompetive\b/uncompetitive/g -s/\bunconcious\b/unconscious/g -s/\bunconciousness\b/unconsciousness/g -s/\bunconfortability\b/discomfort/g -s/\buncontitutional\b/unconstitutional/g -s/\bunconvential\b/unconventional/g -s/\bundecideable\b/undecidable/g -s/\bunderstoon\b/understood/g -s/\bundesireable\b/undesirable/g -s/\bundetecable\b/undetectable/g -s/\bundoubtely\b/undoubtedly/g -s/\bundreground\b/underground/g -s/\buneccesary\b/unnecessary/g -s/\bunecessary\b/unnecessary/g -s/\bunequalities\b/inequalities/g -s/\bunforseen\b/unforeseen/g -s/\bunforetunately\b/unfortunately/g -s/\bunforgetable\b/unforgettable/g -s/\bunforgiveable\b/unforgivable/g -s/\bunfortunatley\b/unfortunately/g -s/\bunfortunatly\b/unfortunately/g -s/\bunfourtunately\b/unfortunately/g -s/\bunihabited\b/uninhabited/g -s/\bunilateraly\b/unilaterally/g -s/\bunilatreal\b/unilateral/g -s/\bunilatreally\b/unilaterally/g -s/\buninterruped\b/uninterrupted/g -s/\buninterupted\b/uninterrupted/g -s/\bUnitesStates\b/UnitedStates/g -s/\buniveral\b/universal/g -s/\buniveristies\b/universities/g -s/\buniveristy\b/university/g -s/\buniverity\b/university/g -s/\buniverstiy\b/university/g -s/\bunivesities\b/universities/g -s/\bunivesity\b/university/g -s/\bunkown\b/unknown/g -s/\bunlikey\b/unlikely/g -s/\bunmistakeably\b/unmistakably/g -s/\bunneccesarily\b/unnecessarily/g -s/\bunneccesary\b/unnecessary/g -s/\bunneccessarily\b/unnecessarily/g -s/\bunneccessary\b/unnecessary/g -s/\bunnecesarily\b/unnecessarily/g -s/\bunnecesary\b/unnecessary/g -s/\bunoffical\b/unofficial/g -s/\bunoperational\b/nonoperational/g -s/\bunoticeable\b/unnoticeable/g -s/\bunplease\b/displease/g -s/\bunplesant\b/unpleasant/g -s/\bunprecendented\b/unprecedented/g -s/\bunprecidented\b/unprecedented/g -s/\bunrepentent\b/unrepentant/g -s/\bunrepetant\b/unrepentant/g -s/\bunrepetent\b/unrepentant/g -s/\bunsubstanciated\b/unsubstantiated/g -s/\bunsuccesful\b/unsuccessful/g -s/\bunsuccesfully\b/unsuccessfully/g -s/\bunsuccessfull\b/unsuccessful/g -s/\bunsucesful\b/unsuccessful/g -s/\bunsucesfuly\b/unsuccessfully/g -s/\bunsucessful\b/unsuccessful/g -s/\bunsucessfull\b/unsuccessful/g -s/\bunsucessfully\b/unsuccessfully/g -s/\bunsuprised\b/unsurprised/g -s/\bunsuprising\b/unsurprising/g -s/\bunsuprisingly\b/unsurprisingly/g -s/\bunsuprized\b/unsurprised/g -s/\bunsuprizing\b/unsurprising/g -s/\bunsuprizingly\b/unsurprisingly/g -s/\bunsurprized\b/unsurprised/g -s/\bunsurprizing\b/unsurprising/g -s/\bunsurprizingly\b/unsurprisingly/g -s/\buntill\b/until/g -s/\buntranslateable\b/untranslatable/g -s/\bunuseable\b/unusable/g -s/\bunusuable\b/unusable/g -s/\bunviersity\b/university/g -s/\bunwarrented\b/unwarranted/g -s/\bunweildly\b/unwieldy/g -s/\bunwieldly\b/unwieldy/g -s/\bupcomming\b/upcoming/g -s/\bupgradded\b/upgraded/g -s/\bupto\b/up to/g -s/\busally\b/usually/g -s/\buseage\b/usage/g -s/\busefull\b/useful/g -s/\busefuly\b/usefully/g -s/\buseing\b/using/g -s/\busualy\b/usually/g -s/\bususally\b/usually/g -s/\bvaccum\b/vacuum/g -s/\bvaccume\b/vacuum/g -s/\bvacinity\b/vicinity/g -s/\bvaguaries\b/vagaries/g -s/\bvaieties\b/varieties/g -s/\bvailidty\b/validity/g -s/\bvaletta\b/valletta/g -s/\bvaluble\b/valuable/g -s/\bvalueable\b/valuable/g -s/\bvarations\b/variations/g -s/\bvarient\b/variant/g -s/\bvariey\b/variety/g -s/\bvaring\b/varying/g -s/\bvarities\b/varieties/g -s/\bvarity\b/variety/g -s/\bvasall\b/vassal/g -s/\bvasalls\b/vassals/g -s/\bvegatarian\b/vegetarian/g -s/\bvegitable\b/vegetable/g -s/\bvegitables\b/vegetables/g -s/\bvegtable\b/vegetable/g -s/\bvehicule\b/vehicle/g -s/\bvell\b/well/g -s/\bvenemous\b/venomous/g -s/\bvengance\b/vengeance/g -s/\bvengence\b/vengeance/g -s/\bverfication\b/verification/g -s/\bverison\b/version/g -s/\bverisons\b/versions/g -s/\bvermillion\b/vermilion/g -s/\bversitilaty\b/versatility/g -s/\bversitlity\b/versatility/g -s/\bvetween\b/between/g -s/\bveyr\b/very/g -s/\bvigilence\b/vigilance/g -s/\bvigourous\b/vigorous/g -s/\bvillian\b/villain/g -s/\bvillification\b/vilification/g -s/\bvillify\b/vilify/g -s/\bvincinity\b/vicinity/g -s/\bviolentce\b/violence/g -s/\bvirtualy\b/virtually/g -s/\bvirutal\b/virtual/g -s/\bvirutally\b/virtually/g -s/\bvisable\b/visible/g -s/\bvisably\b/visibly/g -s/\bvisting\b/visiting/g -s/\bvistors\b/visitors/g -s/\bvitories\b/victories/g -s/\bvolcanoe\b/volcano/g -s/\bvoleyball\b/volleyball/g -s/\bvolontary\b/voluntary/g -s/\bvolonteer\b/volunteer/g -s/\bvolonteered\b/volunteered/g -s/\bvolonteering\b/volunteering/g -s/\bvolonteers\b/volunteers/g -s/\bvolounteer\b/volunteer/g -s/\bvolounteered\b/volunteered/g -s/\bvolounteering\b/volunteering/g -s/\bvolounteers\b/volunteers/g -s/\bvolumne\b/volume/g -s/\bvreity\b/variety/g -s/\bvrey\b/very/g -s/\bvriety\b/variety/g -s/\bvulnerablility\b/vulnerability/g -s/\bvyer\b/very/g -s/\bvyre\b/very/g -s/\bwaht\b/what/g -s/\bwarantee\b/warranty/g -s/\bwardobe\b/wardrobe/g -s/\bwarrent\b/warrant/g -s/\bwarrriors\b/warriors/g -s/\bwasnt\b/wasn't/g -s/\bwass\b/was/g -s/\bwatn\b/want/g -s/\bwayword\b/wayward/g -s/\bweaponary\b/weaponry/g -s/\bweas\b/was/g -s/\bwehn\b/when/g -s/\bweilded\b/wielded/g -s/\bwendsay\b/Wednesday/g -s/\bwensday\b/Wednesday/g -s/\bwereabouts\b/whereabouts/g -s/\bwhant\b/want/g -s/\bwhants\b/wants/g -s/\bwhcih\b/which/g -s/\bwheras\b/whereas/g -s/\bwherease\b/whereas/g -s/\bwhereever\b/wherever/g -s/\bwhic\b/which/g -s/\bwhihc\b/which/g -s/\bwhith\b/with/g -s/\bwhlch\b/which/g -s/\bwhn\b/when/g -s/\bwholey\b/wholly/g -s/\bwhta\b/what/g -s/\bwhther\b/whether/g -s/\bwidesread\b/widespread/g -s/\bwief\b/wife/g -s/\bwierd\b/weird/g -s/\bwiew\b/view/g -s/\bwih\b/with/g -s/\bwiht\b/with/g -s/\bwille\b/will/g -s/\bwillk\b/will/g -s/\bwillingless\b/willingness/g -s/\bwirting\b/writing/g -s/\bwitheld\b/withheld/g -s/\bwithh\b/with/g -s/\bwithing\b/within/g -s/\bwithold\b/withhold/g -s/\bwitht\b/with/g -s/\bwitn\b/with/g -s/\bwiull\b/will/g -s/\bwnat\b/want/g -s/\bwnated\b/wanted/g -s/\bwnats\b/wants/g -s/\bwohle\b/whole/g -s/\bwokr\b/work/g -s/\bwokring\b/working/g -s/\bwonderfull\b/wonderful/g -s/\bwordlwide\b/worldwide/g -s/\bworkststion\b/workstation/g -s/\bworls\b/world/g -s/\bworstened\b/worsened/g -s/\bwoudl\b/would/g -s/\bwresters\b/wrestlers/g -s/\bwriet\b/write/g -s/\bwriten\b/written/g -s/\bwroet\b/wrote/g -s/\bwrok\b/work/g -s/\bwroking\b/working/g -s/\bwtih\b/with/g -s/\bwupport\b/support/g -s/\bxenophoby\b/xenophobia/g -s/\byaching\b/yachting/g -s/\byaer\b/year/g -s/\byaerly\b/yearly/g -s/\byaers\b/years/g -s/\byatch\b/yacht/g -s/\byearm\b/year/g -s/\byeasr\b/years/g -s/\byeild\b/yield/g -s/\byeilding\b/yielding/g -s/\byera\b/year/g -s/\byrea\b/year/g -s/\byeras\b/years/g -s/\byersa\b/years/g -s/\byotube\b/youtube/g -s/\byouseff\b/yousef/g -s/\byouself\b/yourself/g -s/\bytou\b/you/g -s/\byuo\b/you/g -s/\bzeebra\b/zebra/g diff --git a/fixSpellingMistakes b/fixSpellingMistakes deleted file mode 100755 index b45351ab08abc0b6f8ed3313f1b1500516e6e533..0000000000000000000000000000000000000000 --- a/fixSpellingMistakes +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -if [ ! -d ".git" ]; then - #not running in git repo, so can't use git commands :-) - echo "No .git repo found - skipping sanity checks" - exit 0 -fi - -git ls-files -z src/*.tw | grep -z -v .min.tw | grep -z -v setupVars.tw | xargs -0 sed -i -f devTools/spell_check.txt diff --git a/fixSpellingMistakes2 b/fixSpellingMistakes2 deleted file mode 100755 index d2f677c94ec483aa7f53bc0430a9b6432a4c1598..0000000000000000000000000000000000000000 --- a/fixSpellingMistakes2 +++ /dev/null @@ -1,4077 +0,0 @@ -#!/bin/bash -if [ ! -d ".git" ]; then - exit 0 -fi -GREP="git grep -lz" -$GREP "\babandonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babandonned\b/abandoned/g" *.tw -$GREP "\baberation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baberation\b/aberration/g" *.tw -$GREP "\babilityes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilityes\b/abilities/g" *.tw -$GREP "\babilties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilties\b/abilities/g" *.tw -$GREP "\babilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilty\b/ability/g" *.tw -$GREP "\babondon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondon\b/abandon/g" *.tw -$GREP "\babbout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babbout\b/about/g" *.tw -$GREP "\babotu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babotu\b/about/g" *.tw -$GREP "\babouta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babouta\b/about a/g" *.tw -$GREP "\baboutit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutit\b/about it/g" *.tw -$GREP "\baboutthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutthe\b/about the/g" *.tw -$GREP "\babscence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babscence\b/absence/g" *.tw -$GREP "\babondoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoned\b/abandoned/g" *.tw -$GREP "\babondoning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoning\b/abandoning/g" *.tw -$GREP "\babondons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondons\b/abandons/g" *.tw -$GREP "\baborigene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baborigene\b/aborigine/g" *.tw -$GREP "\baccesories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccesories\b/accessories/g" *.tw -$GREP "\baccidant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidant\b/accident/g" *.tw -$GREP "\babortificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babortificant\b/abortifacient/g" *.tw -$GREP "\babreviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviate\b/abbreviate/g" *.tw -$GREP "\babreviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviated\b/abbreviated/g" *.tw -$GREP "\babreviation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviation\b/abbreviation/g" *.tw -$GREP "\babritrary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babritrary\b/arbitrary/g" *.tw -$GREP "\babsail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsail\b/abseil/g" *.tw -$GREP "\babsailing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsailing\b/abseiling/g" *.tw -$GREP "\babsense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsense\b/absence/g" *.tw -$GREP "\babsolutly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsolutly\b/absolutely/g" *.tw -$GREP "\babsorbsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbsion\b/absorption/g" *.tw -$GREP "\babsorbtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbtion\b/absorption/g" *.tw -$GREP "\babudance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babudance\b/abundance/g" *.tw -$GREP "\babundacies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundacies\b/abundances/g" *.tw -$GREP "\babundancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundancies\b/abundances/g" *.tw -$GREP "\babundunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundunt\b/abundant/g" *.tw -$GREP "\babutts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babutts\b/abuts/g" *.tw -$GREP "\bacadamy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadamy\b/academy/g" *.tw -$GREP "\bacadmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadmic\b/academic/g" *.tw -$GREP "\baccademic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademic\b/academic/g" *.tw -$GREP "\baccademy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademy\b/academy/g" *.tw -$GREP "\bacccused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacccused\b/accused/g" *.tw -$GREP "\baccelleration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccelleration\b/acceleration/g" *.tw -$GREP "\bacceptence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptence\b/acceptance/g" *.tw -$GREP "\bacceptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptible\b/acceptable/g" *.tw -$GREP "\baccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccessable\b/accessible/g" *.tw -$GREP "\bacident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacident\b/accident/g" *.tw -$GREP "\baccidentaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidentaly\b/accidentally/g" *.tw -$GREP "\baccidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidently\b/accidentally/g" *.tw -$GREP "\bacclimitization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacclimitization\b/acclimatization/g" *.tw -$GREP "\baccomadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadate\b/accommodate/g" *.tw -$GREP "\baccomadated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadated\b/accommodated/g" *.tw -$GREP "\baccomadates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadates\b/accommodates/g" *.tw -$GREP "\baccomadating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadating\b/accommodating/g" *.tw -$GREP "\baccomadation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadation\b/accommodation/g" *.tw -$GREP "\baccomadations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadations\b/accommodations/g" *.tw -$GREP "\baccomdate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomdate\b/accommodate/g" *.tw -$GREP "\baccomodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodate\b/accommodate/g" *.tw -$GREP "\baccomodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodated\b/accommodated/g" *.tw -$GREP "\baccomodates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodates\b/accommodates/g" *.tw -$GREP "\baccomodating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodating\b/accommodating/g" *.tw -$GREP "\baccomodation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodation\b/accommodation/g" *.tw -$GREP "\baccomodations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodations\b/accommodations/g" *.tw -$GREP "\baccompanyed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccompanyed\b/accompanied/g" *.tw -$GREP "\baccordeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordeon\b/accordion/g" *.tw -$GREP "\baccordian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordian\b/accordion/g" *.tw -$GREP "\baccoring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoring\b/according/g" *.tw -$GREP "\baccoustic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoustic\b/acoustic/g" *.tw -$GREP "\baccquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccquainted\b/acquainted/g" *.tw -$GREP "\baccrediation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccrediation\b/accreditation/g" *.tw -$GREP "\baccredidation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccredidation\b/accreditation/g" *.tw -$GREP "\baccross\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccross\b/across/g" *.tw -$GREP "\baccussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccussed\b/accused/g" *.tw -$GREP "\bacedemic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacedemic\b/academic/g" *.tw -$GREP "\bacheive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheive\b/achieve/g" *.tw -$GREP "\bacheived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheived\b/achieved/g" *.tw -$GREP "\bacheivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivement\b/achievement/g" *.tw -$GREP "\bacheivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivements\b/achievements/g" *.tw -$GREP "\bacheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheives\b/achieves/g" *.tw -$GREP "\bacheiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheiving\b/achieving/g" *.tw -$GREP "\bacheivment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivment\b/achievement/g" *.tw -$GREP "\bacheivments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivments\b/achievements/g" *.tw -$GREP "\bachievment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievment\b/achievement/g" *.tw -$GREP "\bachievments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievments\b/achievements/g" *.tw -$GREP "\bachivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivement\b/achievement/g" *.tw -$GREP "\bachivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivements\b/achievements/g" *.tw -$GREP "\backnowldeged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowldeged\b/acknowledged/g" *.tw -$GREP "\backnowledgeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowledgeing\b/acknowledging/g" *.tw -$GREP "\bacommodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacommodate\b/accommodate/g" *.tw -$GREP "\bacomplish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplish\b/accomplish/g" *.tw -$GREP "\bacomplished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplished\b/accomplished/g" *.tw -$GREP "\bacomplishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishment\b/accomplishment/g" *.tw -$GREP "\bacomplishments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishments\b/accomplishments/g" *.tw -$GREP "\bacording\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacording\b/according/g" *.tw -$GREP "\bacordingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacordingly\b/accordingly/g" *.tw -$GREP "\bacquaintence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintence\b/acquaintance/g" *.tw -$GREP "\bacquaintences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintences\b/acquaintances/g" *.tw -$GREP "\bacquiantence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantence\b/acquaintance/g" *.tw -$GREP "\bacquiantences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantences\b/acquaintances/g" *.tw -$GREP "\bacquited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquited\b/acquitted/g" *.tw -$GREP "\bactivites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivites\b/activities/g" *.tw -$GREP "\bactivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivly\b/actively/g" *.tw -$GREP "\bactualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactualy\b/actually/g" *.tw -$GREP "\bacuracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacuracy\b/accuracy/g" *.tw -$GREP "\bacused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacused\b/accused/g" *.tw -$GREP "\bacustom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustom\b/accustom/g" *.tw -$GREP "\bacustommed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustommed\b/accustomed/g" *.tw -$GREP "\badavanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badavanced\b/advanced/g" *.tw -$GREP "\badbandon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badbandon\b/abandon/g" *.tw -$GREP "\baddional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddional\b/additional/g" *.tw -$GREP "\baddionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddionally\b/additionally/g" *.tw -$GREP "\badditinally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditinally\b/additionally/g" *.tw -$GREP "\badditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditionaly\b/additionally/g" *.tw -$GREP "\badditonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonal\b/additional/g" *.tw -$GREP "\badditonally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonally\b/additionally/g" *.tw -$GREP "\baddmission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddmission\b/admission/g" *.tw -$GREP "\baddopt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopt\b/adopt/g" *.tw -$GREP "\baddopted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopted\b/adopted/g" *.tw -$GREP "\baddoptive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddoptive\b/adoptive/g" *.tw -$GREP "\baddresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresable\b/addressable/g" *.tw -$GREP "\baddresed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresed\b/addressed/g" *.tw -$GREP "\baddresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresing\b/addressing/g" *.tw -$GREP "\baddressess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddressess\b/addresses/g" *.tw -$GREP "\baddtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtion\b/addition/g" *.tw -$GREP "\baddtional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtional\b/additional/g" *.tw -$GREP "\badecuate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badecuate\b/adequate/g" *.tw -$GREP "\badequit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badequit\b/adequate/g" *.tw -$GREP "\badhearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badhearing\b/adhering/g" *.tw -$GREP "\badherance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badherance\b/adherence/g" *.tw -$GREP "\badmendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmendment\b/amendment/g" *.tw -$GREP "\badmininistrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmininistrative\b/administrative/g" *.tw -$GREP "\badminstered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstered\b/administered/g" *.tw -$GREP "\badminstrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrate\b/administrate/g" *.tw -$GREP "\badminstration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstration\b/administration/g" *.tw -$GREP "\badminstrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrative\b/administrative/g" *.tw -$GREP "\badminstrator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrator\b/administrator/g" *.tw -$GREP "\badmissability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissability\b/admissibility/g" *.tw -$GREP "\badmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissable\b/admissible/g" *.tw -$GREP "\badmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmited\b/admitted/g" *.tw -$GREP "\badmitedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmitedly\b/admittedly/g" *.tw -$GREP "\badn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badn\b/and/g" *.tw -$GREP "\badolecent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badolecent\b/adolescent/g" *.tw -$GREP "\badquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquire\b/acquire/g" *.tw -$GREP "\badquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquired\b/acquired/g" *.tw -$GREP "\badquires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquires\b/acquires/g" *.tw -$GREP "\badquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquiring\b/acquiring/g" *.tw -$GREP "\badres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badres\b/address/g" *.tw -$GREP "\badresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresable\b/addressable/g" *.tw -$GREP "\badresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresing\b/addressing/g" *.tw -$GREP "\badress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badress\b/address/g" *.tw -$GREP "\badressable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressable\b/addressable/g" *.tw -$GREP "\badressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressed\b/addressed/g" *.tw -$GREP "\badventrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badventrous\b/adventurous/g" *.tw -$GREP "\badvertisment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisment\b/advertisement/g" *.tw -$GREP "\badvertisments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisments\b/advertisements/g" *.tw -$GREP "\badvesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvesary\b/adversary/g" *.tw -$GREP "\badviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badviced\b/advised/g" *.tw -$GREP "\baeriel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriel\b/aerial/g" *.tw -$GREP "\baeriels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriels\b/aerials/g" *.tw -$GREP "\bafair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafair\b/affair/g" *.tw -$GREP "\bafficianados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficianados\b/aficionados/g" *.tw -$GREP "\bafficionado\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionado\b/aficionado/g" *.tw -$GREP "\bafficionados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionados\b/aficionados/g" *.tw -$GREP "\baffilate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilate\b/affiliate/g" *.tw -$GREP "\baffilliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilliate\b/affiliate/g" *.tw -$GREP "\baforememtioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baforememtioned\b/aforementioned/g" *.tw -$GREP "\bagainnst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagainnst\b/against/g" *.tw -$GREP "\bagains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagains\b/against/g" *.tw -$GREP "\bagaisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagaisnt\b/against/g" *.tw -$GREP "\baganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baganist\b/against/g" *.tw -$GREP "\baggaravates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggaravates\b/aggravates/g" *.tw -$GREP "\baggreed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreed\b/agreed/g" *.tw -$GREP "\baggreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreement\b/agreement/g" *.tw -$GREP "\baggregious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggregious\b/egregious/g" *.tw -$GREP "\baggresive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggresive\b/aggressive/g" *.tw -$GREP "\bagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagian\b/again/g" *.tw -$GREP "\bagianst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagianst\b/against/g" *.tw -$GREP "\bagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagin\b/again/g" *.tw -$GREP "\baginst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baginst\b/against/g" *.tw -$GREP "\bagravate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagravate\b/aggravate/g" *.tw -$GREP "\bagre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagre\b/agree/g" *.tw -$GREP "\bagred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagred\b/agreed/g" *.tw -$GREP "\bagreeement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreeement\b/agreement/g" *.tw -$GREP "\bagreemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreemnt\b/agreement/g" *.tw -$GREP "\bagregate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregate\b/aggregate/g" *.tw -$GREP "\bagregates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregates\b/aggregates/g" *.tw -$GREP "\bagreing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreing\b/agreeing/g" *.tw -$GREP "\bagression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagression\b/aggression/g" *.tw -$GREP "\bagressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressive\b/aggressive/g" *.tw -$GREP "\bagressively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressively\b/aggressively/g" *.tw -$GREP "\bagressor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressor\b/aggressor/g" *.tw -$GREP "\bagricultue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricultue\b/agriculture/g" *.tw -$GREP "\bagriculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagriculure\b/agriculture/g" *.tw -$GREP "\bagricuture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricuture\b/agriculture/g" *.tw -$GREP "\bagrieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagrieved\b/aggrieved/g" *.tw -$GREP "\bahev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahev\b/have/g" *.tw -$GREP "\bahppen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahppen\b/happen/g" *.tw -$GREP "\bahve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahve\b/have/g" *.tw -$GREP "\baicraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baicraft\b/aircraft/g" *.tw -$GREP "\baiport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baiport\b/airport/g" *.tw -$GREP "\bairbourne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairbourne\b/airborne/g" *.tw -$GREP "\baircaft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircaft\b/aircraft/g" *.tw -$GREP "\baircrafts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts\b/aircraft/g" *.tw -$GREP "\baircrafts'\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts'\b/aircraft's/g" *.tw -$GREP "\bairporta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairporta\b/airports/g" *.tw -$GREP "\bairrcraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairrcraft\b/aircraft/g" *.tw -$GREP "\baisian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baisian\b/asian/g" *.tw -$GREP "\balbiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balbiet\b/albeit/g" *.tw -$GREP "\balchohol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchohol\b/alcohol/g" *.tw -$GREP "\balchoholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchoholic\b/alcoholic/g" *.tw -$GREP "\balchol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchol\b/alcohol/g" *.tw -$GREP "\balcholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcholic\b/alcoholic/g" *.tw -$GREP "\balcohal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcohal\b/alcohol/g" *.tw -$GREP "\balcoholical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcoholical\b/alcoholic/g" *.tw -$GREP "\baledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledge\b/allege/g" *.tw -$GREP "\baledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledged\b/alleged/g" *.tw -$GREP "\baledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledges\b/alleges/g" *.tw -$GREP "\balege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balege\b/allege/g" *.tw -$GREP "\baleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baleged\b/alleged/g" *.tw -$GREP "\balegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balegience\b/allegiance/g" *.tw -$GREP "\balgebraical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgebraical\b/algebraic/g" *.tw -$GREP "\balgorhitms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgorhitms\b/algorithms/g" *.tw -$GREP "\balgoritm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritm\b/algorithm/g" *.tw -$GREP "\balgoritms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritms\b/algorithms/g" *.tw -$GREP "\balientating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balientating\b/alienating/g" *.tw -$GREP "\balledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledge\b/allege/g" *.tw -$GREP "\balledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledged\b/alleged/g" *.tw -$GREP "\balledgedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledgedly\b/allegedly/g" *.tw -$GREP "\balledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledges\b/alleges/g" *.tw -$GREP "\ballegedely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedely\b/allegedly/g" *.tw -$GREP "\ballegedy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedy\b/allegedly/g" *.tw -$GREP "\ballegely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegely\b/allegedly/g" *.tw -$GREP "\ballegence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegence\b/allegiance/g" *.tw -$GREP "\ballegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegience\b/allegiance/g" *.tw -$GREP "\ballign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballign\b/align/g" *.tw -$GREP "\balligned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balligned\b/aligned/g" *.tw -$GREP "\balliviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balliviate\b/alleviate/g" *.tw -$GREP "\ballopone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopone\b/allophone/g" *.tw -$GREP "\ballopones\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopones\b/allophones/g" *.tw -$GREP "\ballready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballready\b/already/g" *.tw -$GREP "\ballthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballthough\b/although/g" *.tw -$GREP "\balltime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltime\b/all-time/g" *.tw -$GREP "\balltogether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltogether\b/altogether/g" *.tw -$GREP "\balmsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balmsot\b/almost/g" *.tw -$GREP "\balochol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balochol\b/alcohol/g" *.tw -$GREP "\balomst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balomst\b/almost/g" *.tw -$GREP "\balotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balotted\b/allotted/g" *.tw -$GREP "\balowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowed\b/allowed/g" *.tw -$GREP "\balowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowing\b/allowing/g" *.tw -$GREP "\balreayd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balreayd\b/already/g" *.tw -$GREP "\balse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balse\b/else/g" *.tw -$GREP "\balsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balsot\b/also/g" *.tw -$GREP "\balternitives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balternitives\b/alternatives/g" *.tw -$GREP "\balthought\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balthought\b/although/g" *.tw -$GREP "\baltough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baltough\b/although/g" *.tw -$GREP "\balwasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwasy\b/always/g" *.tw -$GREP "\balwyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwyas\b/always/g" *.tw -$GREP "\bamalgomated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamalgomated\b/amalgamated/g" *.tw -$GREP "\bamatuer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamatuer\b/amateur/g" *.tw -$GREP "\bamendmant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamendmant\b/amendment/g" *.tw -$GREP "\bAmercia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bAmercia\b/America/g" *.tw -$GREP "\bamerliorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamerliorate\b/ameliorate/g" *.tw -$GREP "\bamke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamke\b/make/g" *.tw -$GREP "\bamking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamking\b/making/g" *.tw -$GREP "\bammend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammend\b/amend/g" *.tw -$GREP "\bammended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammended\b/amended/g" *.tw -$GREP "\bammendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendment\b/amendment/g" *.tw -$GREP "\bammendments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendments\b/amendments/g" *.tw -$GREP "\bammount\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammount\b/amount/g" *.tw -$GREP "\bammused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammused\b/amused/g" *.tw -$GREP "\bamoung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoung\b/among/g" *.tw -$GREP "\bamoungst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoungst\b/amongst/g" *.tw -$GREP "\bamung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamung\b/among/g" *.tw -$GREP "\bamunition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamunition\b/ammunition/g" *.tw -$GREP "\banalagous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalagous\b/analogous/g" *.tw -$GREP "\banalitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalitic\b/analytic/g" *.tw -$GREP "\banalogeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalogeous\b/analogous/g" *.tw -$GREP "\banarchim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchim\b/anarchism/g" *.tw -$GREP "\banarchistm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchistm\b/anarchism/g" *.tw -$GREP "\banbd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banbd\b/and/g" *.tw -$GREP "\bancestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancestory\b/ancestry/g" *.tw -$GREP "\bancilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancilliary\b/ancillary/g" *.tw -$GREP "\bandd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandd\b/and/g" *.tw -$GREP "\bandrogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogenous\b/androgynous/g" *.tw -$GREP "\bandrogeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogeny\b/androgyny/g" *.tw -$GREP "\banihilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banihilation\b/annihilation/g" *.tw -$GREP "\baniversary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baniversary\b/anniversary/g" *.tw -$GREP "\bannoint\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoint\b/anoint/g" *.tw -$GREP "\bannointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointed\b/anointed/g" *.tw -$GREP "\bannointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointing\b/anointing/g" *.tw -$GREP "\bannoints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoints\b/anoints/g" *.tw -$GREP "\bannouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannouced\b/announced/g" *.tw -$GREP "\bannualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannualy\b/annually/g" *.tw -$GREP "\bannuled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannuled\b/annulled/g" *.tw -$GREP "\banohter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banohter\b/another/g" *.tw -$GREP "\banomolies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolies\b/anomalies/g" *.tw -$GREP "\banomolous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolous\b/anomalous/g" *.tw -$GREP "\banomoly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomoly\b/anomaly/g" *.tw -$GREP "\banonimity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banonimity\b/anonymity/g" *.tw -$GREP "\banounced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banounced\b/announced/g" *.tw -$GREP "\banouncement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banouncement\b/announcement/g" *.tw -$GREP "\bansalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalisation\b/nasalisation/g" *.tw -$GREP "\bansalization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalization\b/nasalization/g" *.tw -$GREP "\bansestors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansestors\b/ancestors/g" *.tw -$GREP "\bantartic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantartic\b/antarctic/g" *.tw -$GREP "\banthromorphization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthromorphization\b/anthropomorphization/g" *.tw -$GREP "\banthropolgist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgist\b/anthropologist/g" *.tw -$GREP "\banthropolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgy\b/anthropology/g" *.tw -$GREP "\bantiapartheid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantiapartheid\b/anti-apartheid/g" *.tw -$GREP "\banual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banual\b/annual/g" *.tw -$GREP "\banulled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banulled\b/annulled/g" *.tw -$GREP "\banwsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banwsered\b/answered/g" *.tw -$GREP "\banyhwere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyhwere\b/anywhere/g" *.tw -$GREP "\banyother\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyother\b/any other/g" *.tw -$GREP "\banytying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banytying\b/anything/g" *.tw -$GREP "\baparent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparent\b/apparent/g" *.tw -$GREP "\baparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparment\b/apartment/g" *.tw -$GREP "\baplication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplication\b/application/g" *.tw -$GREP "\baplied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplied\b/applied/g" *.tw -$GREP "\bapolegetics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapolegetics\b/apologetics/g" *.tw -$GREP "\bapparant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparant\b/apparent/g" *.tw -$GREP "\bapparantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparantly\b/apparently/g" *.tw -$GREP "\bappart\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappart\b/apart/g" *.tw -$GREP "\bappartment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartment\b/apartment/g" *.tw -$GREP "\bappartments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartments\b/apartments/g" *.tw -$GREP "\bappeareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappeareance\b/appearance/g" *.tw -$GREP "\bappearence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearence\b/appearance/g" *.tw -$GREP "\bappearences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearences\b/appearances/g" *.tw -$GREP "\bapperance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperance\b/appearance/g" *.tw -$GREP "\bapperances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperances\b/appearances/g" *.tw -$GREP "\bappereance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereance\b/appearance/g" *.tw -$GREP "\bappereances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereances\b/appearances/g" *.tw -$GREP "\bapplicaiton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaiton\b/application/g" *.tw -$GREP "\bapplicaitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaitons\b/applications/g" *.tw -$GREP "\bappologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappologies\b/apologies/g" *.tw -$GREP "\bappology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappology\b/apology/g" *.tw -$GREP "\bapprearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprearance\b/appearance/g" *.tw -$GREP "\bapprieciate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprieciate\b/appreciate/g" *.tw -$GREP "\bapproachs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproachs\b/approaches/g" *.tw -$GREP "\bappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropiate\b/appropriate/g" *.tw -$GREP "\bappropraite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropraite\b/appropriate/g" *.tw -$GREP "\bappropropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropropiate\b/appropriate/g" *.tw -$GREP "\bapproproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproproximate\b/approximate/g" *.tw -$GREP "\bapproxamately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxamately\b/approximately/g" *.tw -$GREP "\bapproxiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxiately\b/approximately/g" *.tw -$GREP "\bapproximitely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproximitely\b/approximately/g" *.tw -$GREP "\baprehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baprehensive\b/apprehensive/g" *.tw -$GREP "\bapropriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapropriate\b/appropriate/g" *.tw -$GREP "\baproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproval\b/approval/g" *.tw -$GREP "\baproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximate\b/approximate/g" *.tw -$GREP "\baproximately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximately\b/approximately/g" *.tw -$GREP "\baquaduct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaduct\b/aqueduct/g" *.tw -$GREP "\baquaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaintance\b/acquaintance/g" *.tw -$GREP "\baquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquainted\b/acquainted/g" *.tw -$GREP "\baquiantance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiantance\b/acquaintance/g" *.tw -$GREP "\baquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquire\b/acquire/g" *.tw -$GREP "\baquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquired\b/acquired/g" *.tw -$GREP "\baquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiring\b/acquiring/g" *.tw -$GREP "\baquisition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquisition\b/acquisition/g" *.tw -$GREP "\baquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquitted\b/acquitted/g" *.tw -$GREP "\baranged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baranged\b/arranged/g" *.tw -$GREP "\barangement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barangement\b/arrangement/g" *.tw -$GREP "\barbitarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitarily\b/arbitrarily/g" *.tw -$GREP "\barbitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitary\b/arbitrary/g" *.tw -$GREP "\barchaelogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogical\b/archaeological/g" *.tw -$GREP "\barchaelogists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogists\b/archaeologists/g" *.tw -$GREP "\barchaelogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogy\b/archaeology/g" *.tw -$GREP "\barchetect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetect\b/architect/g" *.tw -$GREP "\barchetects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetects\b/architects/g" *.tw -$GREP "\barchetectural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetectural\b/architectural/g" *.tw -$GREP "\barchetecturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecturally\b/architecturally/g" *.tw -$GREP "\barchetecture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecture\b/architecture/g" *.tw -$GREP "\barchiac\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchiac\b/archaic/g" *.tw -$GREP "\barchictect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchictect\b/architect/g" *.tw -$GREP "\barchimedian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchimedian\b/archimedean/g" *.tw -$GREP "\barchitecht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitecht\b/architect/g" *.tw -$GREP "\barchitechturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechturally\b/architecturally/g" *.tw -$GREP "\barchitechture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechture\b/architecture/g" *.tw -$GREP "\barchitechtures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechtures\b/architectures/g" *.tw -$GREP "\barchitectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitectual\b/architectural/g" *.tw -$GREP "\barchtype\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtype\b/archetype/g" *.tw -$GREP "\barchtypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtypes\b/archetypes/g" *.tw -$GREP "\baready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baready\b/already/g" *.tw -$GREP "\bareodynamics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bareodynamics\b/aerodynamics/g" *.tw -$GREP "\bargubly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bargubly\b/arguably/g" *.tw -$GREP "\barguement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguement\b/argument/g" *.tw -$GREP "\barguements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguements\b/arguments/g" *.tw -$GREP "\barised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barised\b/arose/g" *.tw -$GREP "\barival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barival\b/arrival/g" *.tw -$GREP "\barmamant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmamant\b/armament/g" *.tw -$GREP "\barmistace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmistace\b/armistice/g" *.tw -$GREP "\barogant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogant\b/arrogant/g" *.tw -$GREP "\barogent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogent\b/arrogant/g" *.tw -$GREP "\baroud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baroud\b/around/g" *.tw -$GREP "\barrangment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangment\b/arrangement/g" *.tw -$GREP "\barrangments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangments\b/arrangements/g" *.tw -$GREP "\barrengement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengement\b/arrangement/g" *.tw -$GREP "\barrengements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengements\b/arrangements/g" *.tw -$GREP "\barround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barround\b/around/g" *.tw -$GREP "\bartcile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartcile\b/article/g" *.tw -$GREP "\bartical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartical\b/article/g" *.tw -$GREP "\bartice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartice\b/article/g" *.tw -$GREP "\barticel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barticel\b/article/g" *.tw -$GREP "\bartifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifical\b/artificial/g" *.tw -$GREP "\bartifically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifically\b/artificially/g" *.tw -$GREP "\bartillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartillary\b/artillery/g" *.tw -$GREP "\barund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barund\b/around/g" *.tw -$GREP "\basetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basetic\b/ascetic/g" *.tw -$GREP "\basfar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basfar\b/as far/g" *.tw -$GREP "\basign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basign\b/assign/g" *.tw -$GREP "\baslo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baslo\b/also/g" *.tw -$GREP "\basociated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basociated\b/associated/g" *.tw -$GREP "\basorbed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basorbed\b/absorbed/g" *.tw -$GREP "\basphyxation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basphyxation\b/asphyxiation/g" *.tw -$GREP "\bassasin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasin\b/assassin/g" *.tw -$GREP "\bassasinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinate\b/assassinate/g" *.tw -$GREP "\bassasinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinated\b/assassinated/g" *.tw -$GREP "\bassasinates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinates\b/assassinates/g" *.tw -$GREP "\bassasination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasination\b/assassination/g" *.tw -$GREP "\bassasinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinations\b/assassinations/g" *.tw -$GREP "\bassasined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasined\b/assassinated/g" *.tw -$GREP "\bassasins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasins\b/assassins/g" *.tw -$GREP "\bassassintation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassassintation\b/assassination/g" *.tw -$GREP "\bassemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassemple\b/assemble/g" *.tw -$GREP "\bassertation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassertation\b/assertion/g" *.tw -$GREP "\basside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basside\b/aside/g" *.tw -$GREP "\bassisnate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassisnate\b/assassinate/g" *.tw -$GREP "\bassit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassit\b/assist/g" *.tw -$GREP "\bassitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassitant\b/assistant/g" *.tw -$GREP "\bassocation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassocation\b/association/g" *.tw -$GREP "\bassoicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicate\b/associate/g" *.tw -$GREP "\bassoicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicated\b/associated/g" *.tw -$GREP "\bassoicates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicates\b/associates/g" *.tw -$GREP "\bassosication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassosication\b/assassination/g" *.tw -$GREP "\basssassans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basssassans\b/assassins/g" *.tw -$GREP "\bassualt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualt\b/assault/g" *.tw -$GREP "\bassualted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualted\b/assaulted/g" *.tw -$GREP "\bassymetric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetric\b/asymmetric/g" *.tw -$GREP "\bassymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetrical\b/asymmetrical/g" *.tw -$GREP "\basteriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basteriod\b/asteroid/g" *.tw -$GREP "\basthetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetic\b/aesthetic/g" *.tw -$GREP "\basthetical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetical\b/aesthetical/g" *.tw -$GREP "\basthetically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetically\b/aesthetically/g" *.tw -$GREP "\basume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basume\b/assume/g" *.tw -$GREP "\baswell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baswell\b/as well/g" *.tw -$GREP "\batain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batain\b/attain/g" *.tw -$GREP "\batempting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batempting\b/attempting/g" *.tw -$GREP "\batheistical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheistical\b/atheistic/g" *.tw -$GREP "\bathenean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathenean\b/athenian/g" *.tw -$GREP "\batheneans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheneans\b/athenians/g" *.tw -$GREP "\bathiesm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiesm\b/atheism/g" *.tw -$GREP "\bathiest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiest\b/atheist/g" *.tw -$GREP "\batorney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batorney\b/attorney/g" *.tw -$GREP "\batribute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batribute\b/attribute/g" *.tw -$GREP "\batributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributed\b/attributed/g" *.tw -$GREP "\batributes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributes\b/attributes/g" *.tw -$GREP "\battemp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemp\b/attempt/g" *.tw -$GREP "\battemped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemped\b/attempted/g" *.tw -$GREP "\battemt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemt\b/attempt/g" *.tw -$GREP "\battemted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemted\b/attempted/g" *.tw -$GREP "\battemting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemting\b/attempting/g" *.tw -$GREP "\battemts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemts\b/attempts/g" *.tw -$GREP "\battendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendence\b/attendance/g" *.tw -$GREP "\battendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendent\b/attendant/g" *.tw -$GREP "\battendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendents\b/attendants/g" *.tw -$GREP "\battened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battened\b/attended/g" *.tw -$GREP "\battension\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battension\b/attention/g" *.tw -$GREP "\battitide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battitide\b/attitude/g" *.tw -$GREP "\battributred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battributred\b/attributed/g" *.tw -$GREP "\battrocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battrocities\b/atrocities/g" *.tw -$GREP "\baudeince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baudeince\b/audience/g" *.tw -$GREP "\bauromated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauromated\b/automated/g" *.tw -$GREP "\baustrailia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailia\b/Australia/g" *.tw -$GREP "\baustrailian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailian\b/Australian/g" *.tw -$GREP "\bauther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauther\b/author/g" *.tw -$GREP "\bauthobiographic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiographic\b/autobiographic/g" *.tw -$GREP "\bauthobiography\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiography\b/autobiography/g" *.tw -$GREP "\bauthorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorative\b/authoritative/g" *.tw -$GREP "\bauthorites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorites\b/authorities/g" *.tw -$GREP "\bauthorithy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorithy\b/authority/g" *.tw -$GREP "\bauthoritiers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritiers\b/authorities/g" *.tw -$GREP "\bauthoritive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritive\b/authoritative/g" *.tw -$GREP "\bauthrorities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthrorities\b/authorities/g" *.tw -$GREP "\bautochtonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautochtonous\b/autochthonous/g" *.tw -$GREP "\bautoctonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautoctonous\b/autochthonous/g" *.tw -$GREP "\bautomaticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomaticly\b/automatically/g" *.tw -$GREP "\bautomibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomibile\b/automobile/g" *.tw -$GREP "\bautomonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomonomous\b/autonomous/g" *.tw -$GREP "\bautor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautor\b/author/g" *.tw -$GREP "\bautority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautority\b/authority/g" *.tw -$GREP "\bauxilary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilary\b/auxiliary/g" *.tw -$GREP "\bauxillaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillaries\b/auxiliaries/g" *.tw -$GREP "\bauxillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillary\b/auxiliary/g" *.tw -$GREP "\bauxilliaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliaries\b/auxiliaries/g" *.tw -$GREP "\bauxilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliary\b/auxiliary/g" *.tw -$GREP "\bavailabe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailabe\b/available/g" *.tw -$GREP "\bavailablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailablity\b/availability/g" *.tw -$GREP "\bavailaible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailaible\b/available/g" *.tw -$GREP "\bavailble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailble\b/available/g" *.tw -$GREP "\bavailiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailiable\b/available/g" *.tw -$GREP "\bavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailible\b/available/g" *.tw -$GREP "\bavalable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalable\b/available/g" *.tw -$GREP "\bavalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalance\b/avalanche/g" *.tw -$GREP "\bavaliable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavaliable\b/available/g" *.tw -$GREP "\bavation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavation\b/aviation/g" *.tw -$GREP "\bavengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavengence\b/a vengeance/g" *.tw -$GREP "\baverageed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baverageed\b/averaged/g" *.tw -$GREP "\bavilable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavilable\b/available/g" *.tw -$GREP "\bawared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawared\b/awarded/g" *.tw -$GREP "\bawya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawya\b/away/g" *.tw -$GREP "\bbaceause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbaceause\b/because/g" *.tw -$GREP "\bbackgorund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackgorund\b/background/g" *.tw -$GREP "\bbackrounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackrounds\b/backgrounds/g" *.tw -$GREP "\bbakc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbakc\b/back/g" *.tw -$GREP "\bbanannas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanannas\b/bananas/g" *.tw -$GREP "\bbandwith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbandwith\b/bandwidth/g" *.tw -$GREP "\bbankrupcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbankrupcy\b/bankruptcy/g" *.tw -$GREP "\bbanruptcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanruptcy\b/bankruptcy/g" *.tw -$GREP "\bbasicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicaly\b/basically/g" *.tw -$GREP "\bbasicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicly\b/basically/g" *.tw -$GREP "\bbcak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbcak\b/back/g" *.tw -$GREP "\bbeachead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeachead\b/beachhead/g" *.tw -$GREP "\bbeacuse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeacuse\b/because/g" *.tw -$GREP "\bbeastiality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeastiality\b/bestiality/g" *.tw -$GREP "\bbeatiful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeatiful\b/beautiful/g" *.tw -$GREP "\bbeaurocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocracy\b/bureaucracy/g" *.tw -$GREP "\bbeaurocratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocratic\b/bureaucratic/g" *.tw -$GREP "\bbeautyfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeautyfull\b/beautiful/g" *.tw -$GREP "\bbecamae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecamae\b/became/g" *.tw -$GREP "\bbecasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecasue\b/because/g" *.tw -$GREP "\bbeccause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeccause\b/because/g" *.tw -$GREP "\bbecomeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomeing\b/becoming/g" *.tw -$GREP "\bbecomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomming\b/becoming/g" *.tw -$GREP "\bbecouse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecouse\b/because/g" *.tw -$GREP "\bbecuase\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecuase\b/because/g" *.tw -$GREP "\bbedore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbedore\b/before/g" *.tw -$GREP "\bbeeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeeing\b/being/g" *.tw -$GREP "\bbefoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbefoer\b/before/g" *.tw -$GREP "\bbegginer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginer\b/beginner/g" *.tw -$GREP "\bbegginers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginers\b/beginners/g" *.tw -$GREP "\bbeggining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggining\b/beginning/g" *.tw -$GREP "\bbegginings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginings\b/beginnings/g" *.tw -$GREP "\bbeggins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggins\b/begins/g" *.tw -$GREP "\bbegining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegining\b/beginning/g" *.tw -$GREP "\bbeginnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeginnig\b/beginning/g" *.tw -$GREP "\bbeleagured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleagured\b/beleaguered/g" *.tw -$GREP "\bbeleif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleif\b/belief/g" *.tw -$GREP "\bbeleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleive\b/believe/g" *.tw -$GREP "\bbeleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleived\b/believed/g" *.tw -$GREP "\bbeleives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleives\b/believes/g" *.tw -$GREP "\bbeleiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleiving\b/believing/g" *.tw -$GREP "\bbeligum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeligum\b/belgium/g" *.tw -$GREP "\bbelive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelive\b/believe/g" *.tw -$GREP "\bbelligerant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelligerant\b/belligerent/g" *.tw -$GREP "\bbellweather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbellweather\b/bellwether/g" *.tw -$GREP "\bbemusemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbemusemnt\b/bemusement/g" *.tw -$GREP "\bbeneficary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeneficary\b/beneficiary/g" *.tw -$GREP "\bbeng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeng\b/being/g" *.tw -$GREP "\bbenificial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenificial\b/beneficial/g" *.tw -$GREP "\bbenifit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifit\b/benefit/g" *.tw -$GREP "\bbenifits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifits\b/benefits/g" *.tw -$GREP "\bbergamont\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbergamont\b/bergamot/g" *.tw -$GREP "\bBernouilli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBernouilli\b/Bernoulli/g" *.tw -$GREP "\bbeseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseige\b/besiege/g" *.tw -$GREP "\bbeseiged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiged\b/besieged/g" *.tw -$GREP "\bbeseiging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiging\b/besieging/g" *.tw -$GREP "\bbeteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeteen\b/between/g" *.tw -$GREP "\bbetwen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbetwen\b/between/g" *.tw -$GREP "\bbeween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeween\b/between/g" *.tw -$GREP "\bbewteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbewteen\b/between/g" *.tw -$GREP "\bbigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbigining\b/beginning/g" *.tw -$GREP "\bbiginning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbiginning\b/beginning/g" *.tw -$GREP "\bbilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbilateraly\b/bilaterally/g" *.tw -$GREP "\bbillingualism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbillingualism\b/bilingualism/g" *.tw -$GREP "\bbinominal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbinominal\b/binomial/g" *.tw -$GREP "\bbizzare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbizzare\b/bizarre/g" *.tw -$GREP "\bblaim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaim\b/blame/g" *.tw -$GREP "\bblaimed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaimed\b/blamed/g" *.tw -$GREP "\bblessure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblessure\b/blessing/g" *.tw -$GREP "\bBlitzkreig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBlitzkreig\b/Blitzkrieg/g" *.tw -$GREP "\bbodydbuilder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbodydbuilder\b/bodybuilder/g" *.tw -$GREP "\bbombardement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombardement\b/bombardment/g" *.tw -$GREP "\bbombarment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombarment\b/bombardment/g" *.tw -$GREP "\bbondary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbondary\b/boundary/g" *.tw -$GREP "\bBonnano\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBonnano\b/Bonanno/g" *.tw -$GREP "\bboook\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboook\b/book/g" *.tw -$GREP "\bborke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bborke\b/broke/g" *.tw -$GREP "\bboundry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboundry\b/boundary/g" *.tw -$GREP "\bbouyancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyancy\b/buoyancy/g" *.tw -$GREP "\bbouyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyant\b/buoyant/g" *.tw -$GREP "\bboyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboyant\b/buoyant/g" *.tw -$GREP "\bbradcast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbradcast\b/broadcast/g" *.tw -$GREP "\bBrasillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrasillian\b/Brazilian/g" *.tw -$GREP "\bbreakthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthough\b/breakthrough/g" *.tw -$GREP "\bbreakthroughts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthroughts\b/breakthroughs/g" *.tw -$GREP "\bbreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreif\b/brief/g" *.tw -$GREP "\bbreifly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreifly\b/briefly/g" *.tw -$GREP "\bbrethen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrethen\b/brethren/g" *.tw -$GREP "\bbretheren\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbretheren\b/brethren/g" *.tw -$GREP "\bbriliant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbriliant\b/brilliant/g" *.tw -$GREP "\bbrillant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrillant\b/brilliant/g" *.tw -$GREP "\bbrimestone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrimestone\b/brimstone/g" *.tw -$GREP "\bBritian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBritian\b/Britain/g" *.tw -$GREP "\bBrittish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrittish\b/British/g" *.tw -$GREP "\bbroacasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroacasted\b/broadcast/g" *.tw -$GREP "\bbroadacasting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroadacasting\b/broadcasting/g" *.tw -$GREP "\bbroady\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroady\b/broadly/g" *.tw -$GREP "\bBuddah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddah\b/Buddha/g" *.tw -$GREP "\bBuddist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddist\b/Buddhist/g" *.tw -$GREP "\bbuisness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisness\b/business/g" *.tw -$GREP "\bbuisnessman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisnessman\b/businessman/g" *.tw -$GREP "\bbuoancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuoancy\b/buoyancy/g" *.tw -$GREP "\bburried\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bburried\b/buried/g" *.tw -$GREP "\bbusines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusines\b/business/g" *.tw -$GREP "\bbusness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusness\b/business/g" *.tw -$GREP "\bbussiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbussiness\b/business/g" *.tw -$GREP "\bcaculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaculater\b/calculator/g" *.tw -$GREP "\bcacuses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcacuses\b/caucuses/g" *.tw -$GREP "\bcahracters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcahracters\b/characters/g" *.tw -$GREP "\bcalaber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalaber\b/caliber/g" *.tw -$GREP "\bcalculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculater\b/calculator/g" *.tw -$GREP "\bcalculs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculs\b/calculus/g" *.tw -$GREP "\bcalenders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalenders\b/calendars/g" *.tw -$GREP "\bcaligraphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaligraphy\b/calligraphy/g" *.tw -$GREP "\bcaluclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclate\b/calculate/g" *.tw -$GREP "\bcaluclated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclated\b/calculated/g" *.tw -$GREP "\bcaluculate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculate\b/calculate/g" *.tw -$GREP "\bcaluculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculated\b/calculated/g" *.tw -$GREP "\bcalulate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulate\b/calculate/g" *.tw -$GREP "\bcalulated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulated\b/calculated/g" *.tw -$GREP "\bcalulater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulater\b/calculator/g" *.tw -$GREP "\bCambrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCambrige\b/Cambridge/g" *.tw -$GREP "\bcamoflage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcamoflage\b/camouflage/g" *.tw -$GREP "\bcampagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampagin\b/campaign/g" *.tw -$GREP "\bcampain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampain\b/campaign/g" *.tw -$GREP "\bcampains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampains\b/campaigns/g" *.tw -$GREP "\bcandadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandadate\b/candidate/g" *.tw -$GREP "\bcandiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandiate\b/candidate/g" *.tw -$GREP "\bcandidiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandidiate\b/candidate/g" *.tw -$GREP "\bcannister\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannister\b/canister/g" *.tw -$GREP "\bcannisters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannisters\b/canisters/g" *.tw -$GREP "\bcannnot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannnot\b/cannot/g" *.tw -$GREP "\bcannonical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannonical\b/canonical/g" *.tw -$GREP "\bcannotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotation\b/connotation/g" *.tw -$GREP "\bcannotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotations\b/connotations/g" *.tw -$GREP "\bcaost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaost\b/coast/g" *.tw -$GREP "\bcaperbility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaperbility\b/capability/g" *.tw -$GREP "\bCapetown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCapetown\b/Cape Town/g" *.tw -$GREP "\bcapible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapible\b/capable/g" *.tw -$GREP "\bcaptial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptial\b/capital/g" *.tw -$GREP "\bcaptued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptued\b/captured/g" *.tw -$GREP "\bcapturd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapturd\b/captured/g" *.tw -$GREP "\bcarachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarachter\b/character/g" *.tw -$GREP "\bcaracterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaracterized\b/characterized/g" *.tw -$GREP "\bcarefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarefull\b/careful/g" *.tw -$GREP "\bcareing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcareing\b/caring/g" *.tw -$GREP "\bcarismatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarismatic\b/charismatic/g" *.tw -$GREP "\bCarmalite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarmalite\b/Carmelite/g" *.tw -$GREP "\bCarnagie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie\b/Carnegie/g" *.tw -$GREP "\bCarnagie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie-Mellon\b/Carnegie-Mellon/g" *.tw -$GREP "\bCarnigie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie\b/Carnegie/g" *.tw -$GREP "\bCarnigie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie-Mellon\b/Carnegie-Mellon/g" *.tw -$GREP "\bcarreer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarreer\b/career/g" *.tw -$GREP "\bcarrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarrers\b/careers/g" *.tw -$GREP "\bCarribbean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribbean\b/Caribbean/g" *.tw -$GREP "\bCarribean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribean\b/Caribbean/g" *.tw -$GREP "\bcarryng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarryng\b/carrying/g" *.tw -$GREP "\bcartdridge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartdridge\b/cartridge/g" *.tw -$GREP "\bCarthagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarthagian\b/Carthaginian/g" *.tw -$GREP "\bcarthographer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarthographer\b/cartographer/g" *.tw -$GREP "\bcartilege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilege\b/cartilage/g" *.tw -$GREP "\bcartilidge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilidge\b/cartilage/g" *.tw -$GREP "\bcartrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartrige\b/cartridge/g" *.tw -$GREP "\bcasette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasette\b/cassette/g" *.tw -$GREP "\bcasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasion\b/caisson/g" *.tw -$GREP "\bcassawory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassawory\b/cassowary/g" *.tw -$GREP "\bcassowarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassowarry\b/cassowary/g" *.tw -$GREP "\bcasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasue\b/cause/g" *.tw -$GREP "\bcasued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasued\b/caused/g" *.tw -$GREP "\bcasues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasues\b/causes/g" *.tw -$GREP "\bcasuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasuing\b/causing/g" *.tw -$GREP "\bcasulaties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaties\b/casualties/g" *.tw -$GREP "\bcasulaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaty\b/casualty/g" *.tw -$GREP "\bcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagories\b/categories/g" *.tw -$GREP "\bcatagorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagorized\b/categorized/g" *.tw -$GREP "\bcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagory\b/category/g" *.tw -$GREP "\bcatapillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillar\b/caterpillar/g" *.tw -$GREP "\bcatapillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillars\b/caterpillars/g" *.tw -$GREP "\bcatapiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapiller\b/caterpillar/g" *.tw -$GREP "\bcatapillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillers\b/caterpillars/g" *.tw -$GREP "\bcatepillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillar\b/caterpillar/g" *.tw -$GREP "\bcatepillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillars\b/caterpillars/g" *.tw -$GREP "\bcatergorize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorize\b/categorize/g" *.tw -$GREP "\bcatergorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorized\b/categorized/g" *.tw -$GREP "\bcaterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilar\b/caterpillar/g" *.tw -$GREP "\bcaterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilars\b/caterpillars/g" *.tw -$GREP "\bcaterpiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpiller\b/caterpillar/g" *.tw -$GREP "\bcaterpillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpillers\b/caterpillars/g" *.tw -$GREP "\bcathlic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcathlic\b/catholic/g" *.tw -$GREP "\bcatholocism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatholocism\b/catholicism/g" *.tw -$GREP "\bcatterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilar\b/caterpillar/g" *.tw -$GREP "\bcatterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilars\b/caterpillars/g" *.tw -$GREP "\bcatterpillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillar\b/caterpillar/g" *.tw -$GREP "\bcatterpillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillars\b/caterpillars/g" *.tw -$GREP "\bcattleship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcattleship\b/battleship/g" *.tw -$GREP "\bcausalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcausalities\b/casualties/g" *.tw -$GREP "\bCeasar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCeasar\b/Caesar/g" *.tw -$GREP "\bCelcius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCelcius\b/Celsius/g" *.tw -$GREP "\bcellpading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcellpading\b/cellpadding/g" *.tw -$GREP "\bcementary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcementary\b/cemetery/g" *.tw -$GREP "\bcemetarey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetarey\b/cemetery/g" *.tw -$GREP "\bcemetaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetaries\b/cemeteries/g" *.tw -$GREP "\bcemetary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetary\b/cemetery/g" *.tw -$GREP "\bcencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcencus\b/census/g" *.tw -$GREP "\bcententenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcententenial\b/centennial/g" *.tw -$GREP "\bcentruies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruies\b/centuries/g" *.tw -$GREP "\bcentruy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruy\b/century/g" *.tw -$GREP "\bcentuties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuties\b/centuries/g" *.tw -$GREP "\bcentuty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuty\b/century/g" *.tw -$GREP "\bcerimonial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonial\b/ceremonial/g" *.tw -$GREP "\bcerimonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonies\b/ceremonies/g" *.tw -$GREP "\bcerimonious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonious\b/ceremonious/g" *.tw -$GREP "\bcerimony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimony\b/ceremony/g" *.tw -$GREP "\bceromony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bceromony\b/ceremony/g" *.tw -$GREP "\bcertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertainity\b/certainty/g" *.tw -$GREP "\bcertian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertian\b/certain/g" *.tw -$GREP "\bchalenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchalenging\b/challenging/g" *.tw -$GREP "\bchallange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallange\b/challenge/g" *.tw -$GREP "\bchallanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallanged\b/challenged/g" *.tw -$GREP "\bchallege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallege\b/challenge/g" *.tw -$GREP "\bChampange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bChampange\b/Champagne/g" *.tw -$GREP "\bchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchangable\b/changeable/g" *.tw -$GREP "\bcharachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachter\b/character/g" *.tw -$GREP "\bcharachters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachters\b/characters/g" *.tw -$GREP "\bcharactersistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactersistic\b/characteristic/g" *.tw -$GREP "\bcharactor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactor\b/character/g" *.tw -$GREP "\bcharactors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactors\b/characters/g" *.tw -$GREP "\bcharasmatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharasmatic\b/charismatic/g" *.tw -$GREP "\bcharaterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharaterized\b/characterized/g" *.tw -$GREP "\bchariman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchariman\b/chairman/g" *.tw -$GREP "\bcharistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharistics\b/characteristics/g" *.tw -$GREP "\bcheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheif\b/chief/g" *.tw -$GREP "\bcheifs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheifs\b/chiefs/g" *.tw -$GREP "\bchemcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcial\b/chemical/g" *.tw -$GREP "\bchemcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcially\b/chemically/g" *.tw -$GREP "\bchemestry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemestry\b/chemistry/g" *.tw -$GREP "\bchemicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemicaly\b/chemically/g" *.tw -$GREP "\bchildbird\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchildbird\b/childbirth/g" *.tw -$GREP "\bchilden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchilden\b/children/g" *.tw -$GREP "\bchoclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoclate\b/chocolate/g" *.tw -$GREP "\bchoosen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoosen\b/chosen/g" *.tw -$GREP "\bchracter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchracter\b/character/g" *.tw -$GREP "\bchuch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchuch\b/church/g" *.tw -$GREP "\bchurchs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchurchs\b/churches/g" *.tw -$GREP "\bCincinatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinatti\b/Cincinnati/g" *.tw -$GREP "\bCincinnatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinnatti\b/Cincinnati/g" *.tw -$GREP "\bcirculaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcirculaton\b/circulation/g" *.tw -$GREP "\bcircumsicion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircumsicion\b/circumcision/g" *.tw -$GREP "\bcircut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircut\b/circuit/g" *.tw -$GREP "\bciricuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciricuit\b/circuit/g" *.tw -$GREP "\bciriculum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciriculum\b/curriculum/g" *.tw -$GREP "\bcivillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcivillian\b/civilian/g" *.tw -$GREP "\bclaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaer\b/clear/g" *.tw -$GREP "\bclaerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerer\b/clearer/g" *.tw -$GREP "\bclaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerly\b/clearly/g" *.tw -$GREP "\bclaimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaimes\b/claims/g" *.tw -$GREP "\bclas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclas\b/class/g" *.tw -$GREP "\bclasic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasic\b/classic/g" *.tw -$GREP "\bclasical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasical\b/classical/g" *.tw -$GREP "\bclasically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasically\b/classically/g" *.tw -$GREP "\bcleareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcleareance\b/clearance/g" *.tw -$GREP "\bclincial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclincial\b/clinical/g" *.tw -$GREP "\bclinicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclinicaly\b/clinically/g" *.tw -$GREP "\bcmo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmo\b/com/g" *.tw -$GREP "\bcmoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmoputer\b/computer/g" *.tw -$GREP "\bco-incided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bco-incided\b/coincided/g" *.tw -$GREP "\bCoca Cola\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCoca Cola\b/Coca-Cola/g" *.tw -$GREP "\bcoctail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoctail\b/cocktail/g" *.tw -$GREP "\bcoform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoform\b/conform/g" *.tw -$GREP "\bcognizent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcognizent\b/cognizant/g" *.tw -$GREP "\bcoincedentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoincedentally\b/coincidentally/g" *.tw -$GREP "\bcolaborations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolaborations\b/collaborations/g" *.tw -$GREP "\bcolateral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolateral\b/collateral/g" *.tw -$GREP "\bcolelctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolelctive\b/collective/g" *.tw -$GREP "\bcollaberative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollaberative\b/collaborative/g" *.tw -$GREP "\bcollecton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollecton\b/collection/g" *.tw -$GREP "\bcollegue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegue\b/colleague/g" *.tw -$GREP "\bcollegues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegues\b/colleagues/g" *.tw -$GREP "\bcollonade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonade\b/colonnade/g" *.tw -$GREP "\bcollonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonies\b/colonies/g" *.tw -$GREP "\bcollony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollony\b/colony/g" *.tw -$GREP "\bcollosal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollosal\b/colossal/g" *.tw -$GREP "\bcolonizators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolonizators\b/colonizers/g" *.tw -$GREP "\bcomando\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomando\b/commando/g" *.tw -$GREP "\bcomandos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomandos\b/commandos/g" *.tw -$GREP "\bcomany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomany\b/company/g" *.tw -$GREP "\bcomapany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomapany\b/company/g" *.tw -$GREP "\bcomback\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomback\b/comeback/g" *.tw -$GREP "\bcombanations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombanations\b/combinations/g" *.tw -$GREP "\bcombinatins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombinatins\b/combinations/g" *.tw -$GREP "\bcombusion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombusion\b/combustion/g" *.tw -$GREP "\bcomdemnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomdemnation\b/condemnation/g" *.tw -$GREP "\bcomemmorates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemmorates\b/commemorates/g" *.tw -$GREP "\bcomemoretion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemoretion\b/commemoration/g" *.tw -$GREP "\bcomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomision\b/commission/g" *.tw -$GREP "\bcomisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioned\b/commissioned/g" *.tw -$GREP "\bcomisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioner\b/commissioner/g" *.tw -$GREP "\bcomisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioning\b/commissioning/g" *.tw -$GREP "\bcomisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisions\b/commissions/g" *.tw -$GREP "\bcomission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomission\b/commission/g" *.tw -$GREP "\bcomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioned\b/commissioned/g" *.tw -$GREP "\bcomissioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioner\b/commissioner/g" *.tw -$GREP "\bcomissioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioning\b/commissioning/g" *.tw -$GREP "\bcomissions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissions\b/commissions/g" *.tw -$GREP "\bcomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomited\b/committed/g" *.tw -$GREP "\bcomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomiting\b/committing/g" *.tw -$GREP "\bcomitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitted\b/committed/g" *.tw -$GREP "\bcomittee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomittee\b/committee/g" *.tw -$GREP "\bcomitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitting\b/committing/g" *.tw -$GREP "\bcommandoes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommandoes\b/commandos/g" *.tw -$GREP "\bcommedic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommedic\b/comedic/g" *.tw -$GREP "\bcommemerative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemerative\b/commemorative/g" *.tw -$GREP "\bcommemmorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorate\b/commemorate/g" *.tw -$GREP "\bcommemmorating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorating\b/commemorating/g" *.tw -$GREP "\bcommerical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerical\b/commercial/g" *.tw -$GREP "\bcommerically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerically\b/commercially/g" *.tw -$GREP "\bcommericial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericial\b/commercial/g" *.tw -$GREP "\bcommericially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericially\b/commercially/g" *.tw -$GREP "\bcommerorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerorative\b/commemorative/g" *.tw -$GREP "\bcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomming\b/coming/g" *.tw -$GREP "\bcomminication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomminication\b/communication/g" *.tw -$GREP "\bcommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommision\b/commission/g" *.tw -$GREP "\bcommisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioned\b/commissioned/g" *.tw -$GREP "\bcommisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioner\b/commissioner/g" *.tw -$GREP "\bcommisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioning\b/commissioning/g" *.tw -$GREP "\bcommisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisions\b/commissions/g" *.tw -$GREP "\bcommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommited\b/committed/g" *.tw -$GREP "\bcommitee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitee\b/committee/g" *.tw -$GREP "\bcommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommiting\b/committing/g" *.tw -$GREP "\bcommitte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitte\b/committee/g" *.tw -$GREP "\bcommittment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittment\b/commitment/g" *.tw -$GREP "\bcommittments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittments\b/commitments/g" *.tw -$GREP "\bcommmemorated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommmemorated\b/commemorated/g" *.tw -$GREP "\bcommongly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommongly\b/commonly/g" *.tw -$GREP "\bcommonweath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommonweath\b/commonwealth/g" *.tw -$GREP "\bcommuications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuications\b/communications/g" *.tw -$GREP "\bcommuinications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuinications\b/communications/g" *.tw -$GREP "\bcommunciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunciation\b/communication/g" *.tw -$GREP "\bcommuniation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuniation\b/communication/g" *.tw -$GREP "\bcommunites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunites\b/communities/g" *.tw -$GREP "\bcompability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompability\b/compatibility/g" *.tw -$GREP "\bcomparision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparision\b/comparison/g" *.tw -$GREP "\bcomparisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparisions\b/comparisons/g" *.tw -$GREP "\bcomparitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitive\b/comparative/g" *.tw -$GREP "\bcomparitively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitively\b/comparatively/g" *.tw -$GREP "\bcompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatabilities\b/compatibilities/g" *.tw -$GREP "\bcompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatability\b/compatibility/g" *.tw -$GREP "\bcompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatable\b/compatible/g" *.tw -$GREP "\bcompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablities\b/compatibilities/g" *.tw -$GREP "\bcompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablity\b/compatibility/g" *.tw -$GREP "\bcompatiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiable\b/compatible/g" *.tw -$GREP "\bcompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblities\b/compatibilities/g" *.tw -$GREP "\bcompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblity\b/compatibility/g" *.tw -$GREP "\bcompeitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompeitions\b/competitions/g" *.tw -$GREP "\bcompensantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompensantion\b/compensation/g" *.tw -$GREP "\bcompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetance\b/competence/g" *.tw -$GREP "\bcompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetant\b/competent/g" *.tw -$GREP "\bcompetative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetative\b/competitive/g" *.tw -$GREP "\bcompetitiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetitiion\b/competition/g" *.tw -$GREP "\bcompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetive\b/competitive/g" *.tw -$GREP "\bcompetiveness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetiveness\b/competitiveness/g" *.tw -$GREP "\bcomphrehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomphrehensive\b/comprehensive/g" *.tw -$GREP "\bcompitent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompitent\b/competent/g" *.tw -$GREP "\bcompletedthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletedthe\b/completed the/g" *.tw -$GREP "\bcompletelyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletelyl\b/completely/g" *.tw -$GREP "\bcompletetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletetion\b/completion/g" *.tw -$GREP "\bcomplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomplier\b/compiler/g" *.tw -$GREP "\bcomponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomponant\b/component/g" *.tw -$GREP "\bcomprable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprable\b/comparable/g" *.tw -$GREP "\bcomprimise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprimise\b/compromise/g" *.tw -$GREP "\bcompulsary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsary\b/compulsory/g" *.tw -$GREP "\bcompulsery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsery\b/compulsory/g" *.tw -$GREP "\bcomputarized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomputarized\b/computerized/g" *.tw -$GREP "\bconcensus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcensus\b/consensus/g" *.tw -$GREP "\bconcider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcider\b/consider/g" *.tw -$GREP "\bconcidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidered\b/considered/g" *.tw -$GREP "\bconcidering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidering\b/considering/g" *.tw -$GREP "\bconciders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciders\b/considers/g" *.tw -$GREP "\bconcieted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieted\b/conceited/g" *.tw -$GREP "\bconcieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieved\b/conceived/g" *.tw -$GREP "\bconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcious\b/conscious/g" *.tw -$GREP "\bconciously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciously\b/consciously/g" *.tw -$GREP "\bconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciousness\b/consciousness/g" *.tw -$GREP "\bcondamned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondamned\b/condemned/g" *.tw -$GREP "\bcondemmed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondemmed\b/condemned/g" *.tw -$GREP "\bcondidtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtion\b/condition/g" *.tw -$GREP "\bcondidtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtions\b/conditions/g" *.tw -$GREP "\bconditionsof\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconditionsof\b/conditions of/g" *.tw -$GREP "\bconected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconected\b/connected/g" *.tw -$GREP "\bconection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconection\b/connection/g" *.tw -$GREP "\bconesencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconesencus\b/consensus/g" *.tw -$GREP "\bconfidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidental\b/confidential/g" *.tw -$GREP "\bconfidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidentally\b/confidentially/g" *.tw -$GREP "\bconfids\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfids\b/confides/g" *.tw -$GREP "\bconfigureable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfigureable\b/configurable/g" *.tw -$GREP "\bconfortable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfortable\b/comfortable/g" *.tw -$GREP "\bcongradulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongradulations\b/congratulations/g" *.tw -$GREP "\bcongresional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongresional\b/congressional/g" *.tw -$GREP "\bconived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconived\b/connived/g" *.tw -$GREP "\bconjecutre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjecutre\b/conjecture/g" *.tw -$GREP "\bconjuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjuction\b/conjunction/g" *.tw -$GREP "\bConneticut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bConneticut\b/Connecticut/g" *.tw -$GREP "\bconotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconotations\b/connotations/g" *.tw -$GREP "\bconquerd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerd\b/conquered/g" *.tw -$GREP "\bconquerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerer\b/conqueror/g" *.tw -$GREP "\bconquerers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerers\b/conquerors/g" *.tw -$GREP "\bconqured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconqured\b/conquered/g" *.tw -$GREP "\bconscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconscent\b/consent/g" *.tw -$GREP "\bconsciouness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsciouness\b/consciousness/g" *.tw -$GREP "\bconsdider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdider\b/consider/g" *.tw -$GREP "\bconsdidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdidered\b/considered/g" *.tw -$GREP "\bconsdiered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdiered\b/considered/g" *.tw -$GREP "\bconsectutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsectutive\b/consecutive/g" *.tw -$GREP "\bconsenquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsenquently\b/consequently/g" *.tw -$GREP "\bconsentrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrate\b/concentrate/g" *.tw -$GREP "\bconsentrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrated\b/concentrated/g" *.tw -$GREP "\bconsentrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrates\b/concentrates/g" *.tw -$GREP "\bconsept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsept\b/concept/g" *.tw -$GREP "\bconsequentually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequentually\b/consequently/g" *.tw -$GREP "\bconsequeseces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequeseces\b/consequences/g" *.tw -$GREP "\bconsern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsern\b/concern/g" *.tw -$GREP "\bconserned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserned\b/concerned/g" *.tw -$GREP "\bconserning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserning\b/concerning/g" *.tw -$GREP "\bconservitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconservitive\b/conservative/g" *.tw -$GREP "\bconsiciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiciousness\b/consciousness/g" *.tw -$GREP "\bconsicousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsicousness\b/consciousness/g" *.tw -$GREP "\bconsiderd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiderd\b/considered/g" *.tw -$GREP "\bconsideres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsideres\b/considered/g" *.tw -$GREP "\bconsious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsious\b/conscious/g" *.tw -$GREP "\bconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistant\b/consistent/g" *.tw -$GREP "\bconsistantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistantly\b/consistently/g" *.tw -$GREP "\bconsituencies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituencies\b/constituencies/g" *.tw -$GREP "\bconsituency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituency\b/constituency/g" *.tw -$GREP "\bconsituted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituted\b/constituted/g" *.tw -$GREP "\bconsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitution\b/constitution/g" *.tw -$GREP "\bconsitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitutional\b/constitutional/g" *.tw -$GREP "\bconsolodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodate\b/consolidate/g" *.tw -$GREP "\bconsolodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodated\b/consolidated/g" *.tw -$GREP "\bconsonent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonent\b/consonant/g" *.tw -$GREP "\bconsonents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonents\b/consonants/g" *.tw -$GREP "\bconsorcium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsorcium\b/consortium/g" *.tw -$GREP "\bconspiracys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiracys\b/conspiracies/g" *.tw -$GREP "\bconspiriator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiriator\b/conspirator/g" *.tw -$GREP "\bconstaints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstaints\b/constraints/g" *.tw -$GREP "\bconstanly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstanly\b/constantly/g" *.tw -$GREP "\bconstarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstarnation\b/consternation/g" *.tw -$GREP "\bconstatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstatn\b/constant/g" *.tw -$GREP "\bconstinually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstinually\b/continually/g" *.tw -$GREP "\bconstituant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituant\b/constituent/g" *.tw -$GREP "\bconstituants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituants\b/constituents/g" *.tw -$GREP "\bconstituion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituion\b/constitution/g" *.tw -$GREP "\bconstituional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituional\b/constitutional/g" *.tw -$GREP "\bconsttruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsttruction\b/construction/g" *.tw -$GREP "\bconstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstuction\b/construction/g" *.tw -$GREP "\bcontstruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontstruction\b/construction/g" *.tw -$GREP "\bconsulant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsulant\b/consultant/g" *.tw -$GREP "\bconsumate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumate\b/consummate/g" *.tw -$GREP "\bconsumated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumated\b/consummated/g" *.tw -$GREP "\bcontaiminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaiminate\b/contaminate/g" *.tw -$GREP "\bcontaines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaines\b/contains/g" *.tw -$GREP "\bcontamporaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporaries\b/contemporaries/g" *.tw -$GREP "\bcontamporary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporary\b/contemporary/g" *.tw -$GREP "\bcontempoary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempoary\b/contemporary/g" *.tw -$GREP "\bcontemporaneus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontemporaneus\b/contemporaneous/g" *.tw -$GREP "\bcontempory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempory\b/contemporary/g" *.tw -$GREP "\bcontendor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontendor\b/contender/g" *.tw -$GREP "\bcontian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontian\b/contain/g" *.tw -$GREP "\bcontians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontians\b/contains/g" *.tw -$GREP "\bcontibute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibute\b/contribute/g" *.tw -$GREP "\bcontibuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibuted\b/contributed/g" *.tw -$GREP "\bcontibutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibutes\b/contributes/g" *.tw -$GREP "\bcontigent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontigent\b/contingent/g" *.tw -$GREP "\bcontined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontined\b/continued/g" *.tw -$GREP "\bcontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinential\b/continental/g" *.tw -$GREP "\bcontinous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinous\b/continuous/g" *.tw -$GREP "\bcontinously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinously\b/continuously/g" *.tw -$GREP "\bcontinueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinueing\b/continuing/g" *.tw -$GREP "\bcontravercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontravercial\b/controversial/g" *.tw -$GREP "\bcontraversy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontraversy\b/controversy/g" *.tw -$GREP "\bcontributer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributer\b/contributor/g" *.tw -$GREP "\bcontributers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributers\b/contributors/g" *.tw -$GREP "\bcontritutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontritutions\b/contributions/g" *.tw -$GREP "\bcontroled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroled\b/controlled/g" *.tw -$GREP "\bcontroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroling\b/controlling/g" *.tw -$GREP "\bcontroll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroll\b/control/g" *.tw -$GREP "\bcontrolls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrolls\b/controls/g" *.tw -$GREP "\bcontrovercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercial\b/controversial/g" *.tw -$GREP "\bcontrovercy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercy\b/controversy/g" *.tw -$GREP "\bcontroveries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroveries\b/controversies/g" *.tw -$GREP "\bcontroversal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversal\b/controversial/g" *.tw -$GREP "\bcontroversey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversey\b/controversy/g" *.tw -$GREP "\bcontrovertial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovertial\b/controversial/g" *.tw -$GREP "\bcontrovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovery\b/controversy/g" *.tw -$GREP "\bcontruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontruction\b/construction/g" *.tw -$GREP "\bconveinent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconveinent\b/convenient/g" *.tw -$GREP "\bconvenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvenant\b/covenant/g" *.tw -$GREP "\bconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvential\b/conventional/g" *.tw -$GREP "\bconvertables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertables\b/convertibles/g" *.tw -$GREP "\bconvertion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertion\b/conversion/g" *.tw -$GREP "\bconviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconviced\b/convinced/g" *.tw -$GREP "\bconvienient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvienient\b/convenient/g" *.tw -$GREP "\bcoordiantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoordiantion\b/coordination/g" *.tw -$GREP "\bcoorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoorperations\b/corporations/g" *.tw -$GREP "\bcopmetitors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopmetitors\b/competitors/g" *.tw -$GREP "\bcoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoputer\b/computer/g" *.tw -$GREP "\bcopywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopywrite\b/copyright/g" *.tw -$GREP "\bcoridal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoridal\b/cordial/g" *.tw -$GREP "\bcornmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcornmitted\b/committed/g" *.tw -$GREP "\bcorosion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorosion\b/corrosion/g" *.tw -$GREP "\bcorparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorparate\b/corporate/g" *.tw -$GREP "\bcorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorperations\b/corporations/g" *.tw -$GREP "\bcorrecters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrecters\b/correctors/g" *.tw -$GREP "\bcorreponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreponding\b/corresponding/g" *.tw -$GREP "\bcorreposding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreposding\b/corresponding/g" *.tw -$GREP "\bcorrespondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondant\b/correspondent/g" *.tw -$GREP "\bcorrespondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondants\b/correspondents/g" *.tw -$GREP "\bcorridoors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorridoors\b/corridors/g" *.tw -$GREP "\bcorrispond\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispond\b/correspond/g" *.tw -$GREP "\bcorrispondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondant\b/correspondent/g" *.tw -$GREP "\bcorrispondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondants\b/correspondents/g" *.tw -$GREP "\bcorrisponded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponded\b/corresponded/g" *.tw -$GREP "\bcorrisponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponding\b/corresponding/g" *.tw -$GREP "\bcorrisponds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponds\b/corresponds/g" *.tw -$GREP "\bcostitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcostitution\b/constitution/g" *.tw -$GREP "\bcoucil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoucil\b/council/g" *.tw -$GREP "\bcounries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcounries\b/countries/g" *.tw -$GREP "\bcountains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountains\b/contains/g" *.tw -$GREP "\bcountires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountires\b/countries/g" *.tw -$GREP "\bcreaeted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreaeted\b/created/g" *.tw -$GREP "\bcreche\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreche\b/crèche/g" *.tw -$GREP "\bcreedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreedence\b/credence/g" *.tw -$GREP "\bcritereon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritereon\b/criterion/g" *.tw -$GREP "\bcriterias\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriterias\b/criteria/g" *.tw -$GREP "\bcriticists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriticists\b/critics/g" *.tw -$GREP "\bcritisising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisising\b/criticising/g" *.tw -$GREP "\bcritisism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisism\b/criticism/g" *.tw -$GREP "\bcritisisms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisisms\b/criticisms/g" *.tw -$GREP "\bcritized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritized\b/criticized/g" *.tw -$GREP "\bcritizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritizing\b/criticizing/g" *.tw -$GREP "\bcrockodiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrockodiles\b/crocodiles/g" *.tw -$GREP "\bcrowm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrowm\b/crown/g" *.tw -$GREP "\bcrtical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrtical\b/critical/g" *.tw -$GREP "\bcrticised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrticised\b/criticised/g" *.tw -$GREP "\bcrucifiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrucifiction\b/crucifixion/g" *.tw -$GREP "\bcrusies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrusies\b/cruises/g" *.tw -$GREP "\bcrutial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrutial\b/crucial/g" *.tw -$GREP "\bcrystalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrystalisation\b/crystallisation/g" *.tw -$GREP "\bculiminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bculiminating\b/culminating/g" *.tw -$GREP "\bcumulatative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcumulatative\b/cumulative/g" *.tw -$GREP "\bcurch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurch\b/church/g" *.tw -$GREP "\bcurcuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurcuit\b/circuit/g" *.tw -$GREP "\bcurrenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurrenly\b/currently/g" *.tw -$GREP "\bcurriculem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurriculem\b/curriculum/g" *.tw -$GREP "\bcxan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcxan\b/cyan/g" *.tw -$GREP "\bcyclinder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcyclinder\b/cylinder/g" *.tw -$GREP "\bdacquiri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdacquiri\b/daiquiri/g" *.tw -$GREP "\bdaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaed\b/dead/g" *.tw -$GREP "\bdalmation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdalmation\b/dalmatian/g" *.tw -$GREP "\bdamenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdamenor\b/demeanor/g" *.tw -$GREP "\bdammage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdammage\b/damage/g" *.tw -$GREP "\bDardenelles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDardenelles\b/Dardanelles/g" *.tw -$GREP "\bdaugher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaugher\b/daughter/g" *.tw -$GREP "\bdebateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdebateable\b/debatable/g" *.tw -$GREP "\bdecendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendant\b/descendant/g" *.tw -$GREP "\bdecendants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendants\b/descendants/g" *.tw -$GREP "\bdecendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendent\b/descendant/g" *.tw -$GREP "\bdecendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendents\b/descendants/g" *.tw -$GREP "\bdecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecideable\b/decidable/g" *.tw -$GREP "\bdecidely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecidely\b/decidedly/g" *.tw -$GREP "\bdecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecieved\b/deceived/g" *.tw -$GREP "\bdecison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecison\b/decision/g" *.tw -$GREP "\bdecomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomissioned\b/decommissioned/g" *.tw -$GREP "\bdecomposit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposit\b/decompose/g" *.tw -$GREP "\bdecomposited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposited\b/decomposed/g" *.tw -$GREP "\bdecompositing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecompositing\b/decomposing/g" *.tw -$GREP "\bdecomposits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposits\b/decomposes/g" *.tw -$GREP "\bdecress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecress\b/decrees/g" *.tw -$GREP "\bdecribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribe\b/describe/g" *.tw -$GREP "\bdecribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribed\b/described/g" *.tw -$GREP "\bdecribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribes\b/describes/g" *.tw -$GREP "\bdecribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribing\b/describing/g" *.tw -$GREP "\bdectect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdectect\b/detect/g" *.tw -$GREP "\bdefendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendent\b/defendant/g" *.tw -$GREP "\bdefendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendents\b/defendants/g" *.tw -$GREP "\bdeffensively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffensively\b/defensively/g" *.tw -$GREP "\bdeffine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffine\b/define/g" *.tw -$GREP "\bdeffined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffined\b/defined/g" *.tw -$GREP "\bdefinance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinance\b/defiance/g" *.tw -$GREP "\bdefinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinate\b/definite/g" *.tw -$GREP "\bdefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinately\b/definitely/g" *.tw -$GREP "\bdefinatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinatly\b/definitely/g" *.tw -$GREP "\bdefinetly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinetly\b/definitely/g" *.tw -$GREP "\bdefinining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinining\b/defining/g" *.tw -$GREP "\bdefinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinit\b/definite/g" *.tw -$GREP "\bdefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinitly\b/definitely/g" *.tw -$GREP "\bdefiniton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefiniton\b/definition/g" *.tw -$GREP "\bdefintion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefintion\b/definition/g" *.tw -$GREP "\bdegrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdegrate\b/degrade/g" *.tw -$GREP "\bdelagates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelagates\b/delegates/g" *.tw -$GREP "\bdelapidated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelapidated\b/dilapidated/g" *.tw -$GREP "\bdelerious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelerious\b/delirious/g" *.tw -$GREP "\bdelevopment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelevopment\b/development/g" *.tw -$GREP "\bdeliberatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeliberatly\b/deliberately/g" *.tw -$GREP "\bdelusionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelusionally\b/delusively/g" *.tw -$GREP "\bdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemenor\b/demeanor/g" *.tw -$GREP "\bdemographical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemographical\b/demographic/g" *.tw -$GREP "\bdemolision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemolision\b/demolition/g" *.tw -$GREP "\bdemorcracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemorcracy\b/democracy/g" *.tw -$GREP "\bdemostration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemostration\b/demonstration/g" *.tw -$GREP "\bdenegrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdenegrating\b/denigrating/g" *.tw -$GREP "\bdensly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdensly\b/densely/g" *.tw -$GREP "\bdeparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparment\b/department/g" *.tw -$GREP "\bdeparmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparmental\b/departmental/g" *.tw -$GREP "\bdeparments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparments\b/departments/g" *.tw -$GREP "\bdependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependance\b/dependence/g" *.tw -$GREP "\bdependancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependancy\b/dependency/g" *.tw -$GREP "\bderiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderiviated\b/derived/g" *.tw -$GREP "\bderivitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderivitive\b/derivative/g" *.tw -$GREP "\bderogitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderogitory\b/derogatory/g" *.tw -$GREP "\bdescendands\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescendands\b/descendants/g" *.tw -$GREP "\bdescibed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescibed\b/described/g" *.tw -$GREP "\bdescision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescision\b/decision/g" *.tw -$GREP "\bdescisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescisions\b/decisions/g" *.tw -$GREP "\bdescriibes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescriibes\b/describes/g" *.tw -$GREP "\bdescripters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripters\b/descriptors/g" *.tw -$GREP "\bdescripton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripton\b/description/g" *.tw -$GREP "\bdesctruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesctruction\b/destruction/g" *.tw -$GREP "\bdescuss\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescuss\b/discuss/g" *.tw -$GREP "\bdesgined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesgined\b/designed/g" *.tw -$GREP "\bdeside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeside\b/decide/g" *.tw -$GREP "\bdesigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesigining\b/designing/g" *.tw -$GREP "\bdesinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesinations\b/destinations/g" *.tw -$GREP "\bdesintegrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegrated\b/disintegrated/g" *.tw -$GREP "\bdesintegration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegration\b/disintegration/g" *.tw -$GREP "\bdesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesireable\b/desirable/g" *.tw -$GREP "\bdesitned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesitned\b/destined/g" *.tw -$GREP "\bdesktiop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesktiop\b/desktop/g" *.tw -$GREP "\bdesorder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesorder\b/disorder/g" *.tw -$GREP "\bdesoriented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesoriented\b/disoriented/g" *.tw -$GREP "\bdespict\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespict\b/depict/g" *.tw -$GREP "\bdespiration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespiration\b/desperation/g" *.tw -$GREP "\bdessicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessicated\b/desiccated/g" *.tw -$GREP "\bdessigned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessigned\b/designed/g" *.tw -$GREP "\bdestablized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestablized\b/destabilized/g" *.tw -$GREP "\bdestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestory\b/destroy/g" *.tw -$GREP "\bdetailled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetailled\b/detailed/g" *.tw -$GREP "\bdetatched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetatched\b/detached/g" *.tw -$GREP "\bdeteoriated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteoriated\b/deteriorated/g" *.tw -$GREP "\bdeteriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteriate\b/deteriorate/g" *.tw -$GREP "\bdeterioriating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterioriating\b/deteriorating/g" *.tw -$GREP "\bdeterminining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterminining\b/determining/g" *.tw -$GREP "\bdetremental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetremental\b/detrimental/g" *.tw -$GREP "\bdevasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevasted\b/devastated/g" *.tw -$GREP "\bdevelope\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelope\b/develop/g" *.tw -$GREP "\bdevelopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopement\b/development/g" *.tw -$GREP "\bdevelopped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopped\b/developed/g" *.tw -$GREP "\bdevelpment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelpment\b/development/g" *.tw -$GREP "\bdevels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevels\b/delves/g" *.tw -$GREP "\bdevestated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestated\b/devastated/g" *.tw -$GREP "\bdevestating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestating\b/devastating/g" *.tw -$GREP "\bdevide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevide\b/divide/g" *.tw -$GREP "\bdevided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevided\b/divided/g" *.tw -$GREP "\bdevistating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevistating\b/devastating/g" *.tw -$GREP "\bdevolopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevolopement\b/development/g" *.tw -$GREP "\bdiablical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiablical\b/diabolical/g" *.tw -$GREP "\bdiamons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiamons\b/diamonds/g" *.tw -$GREP "\bdiaster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiaster\b/disaster/g" *.tw -$GREP "\bdichtomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdichtomy\b/dichotomy/g" *.tw -$GREP "\bdiconnects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiconnects\b/disconnects/g" *.tw -$GREP "\bdicover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicover\b/discover/g" *.tw -$GREP "\bdicovered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovered\b/discovered/g" *.tw -$GREP "\bdicovering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovering\b/discovering/g" *.tw -$GREP "\bdicovers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovers\b/discovers/g" *.tw -$GREP "\bdicovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovery\b/discovery/g" *.tw -$GREP "\bdictionarys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdictionarys\b/dictionaries/g" *.tw -$GREP "\bdicussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicussed\b/discussed/g" *.tw -$GREP "\bdidnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdidnt\b/didn't/g" *.tw -$GREP "\bdieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdieties\b/deities/g" *.tw -$GREP "\bdiety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiety\b/deity/g" *.tw -$GREP "\bdiferent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferent\b/different/g" *.tw -$GREP "\bdiferrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferrent\b/different/g" *.tw -$GREP "\bdifferentiatiations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifferentiatiations\b/differentiations/g" *.tw -$GREP "\bdiffernt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffernt\b/different/g" *.tw -$GREP "\bdifficulity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifficulity\b/difficulty/g" *.tw -$GREP "\bdiffrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffrent\b/different/g" *.tw -$GREP "\bdificulties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulties\b/difficulties/g" *.tw -$GREP "\bdificulty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulty\b/difficulty/g" *.tw -$GREP "\bdimenions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimenions\b/dimensions/g" *.tw -$GREP "\bdimention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimention\b/dimension/g" *.tw -$GREP "\bdimentional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentional\b/dimensional/g" *.tw -$GREP "\bdimentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentions\b/dimensions/g" *.tw -$GREP "\bdimesnional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimesnional\b/dimensional/g" *.tw -$GREP "\bdiminuitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiminuitive\b/diminutive/g" *.tw -$GREP "\bdimunitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimunitive\b/diminutive/g" *.tw -$GREP "\bdiosese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiosese\b/diocese/g" *.tw -$GREP "\bdiphtong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtong\b/diphthong/g" *.tw -$GREP "\bdiphtongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtongs\b/diphthongs/g" *.tw -$GREP "\bdiplomancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiplomancy\b/diplomacy/g" *.tw -$GREP "\bdipthong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthong\b/diphthong/g" *.tw -$GREP "\bdipthongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthongs\b/diphthongs/g" *.tw -$GREP "\bdirectoty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirectoty\b/directory/g" *.tw -$GREP "\bdirived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirived\b/derived/g" *.tw -$GREP "\bdisagreeed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisagreeed\b/disagreed/g" *.tw -$GREP "\bdisapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapeared\b/disappeared/g" *.tw -$GREP "\bdisapointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapointing\b/disappointing/g" *.tw -$GREP "\bdisappearred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisappearred\b/disappeared/g" *.tw -$GREP "\bdisaproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisaproval\b/disapproval/g" *.tw -$GREP "\bdisasterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisasterous\b/disastrous/g" *.tw -$GREP "\bdisatisfaction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfaction\b/dissatisfaction/g" *.tw -$GREP "\bdisatisfied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfied\b/dissatisfied/g" *.tw -$GREP "\bdisatrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatrous\b/disastrous/g" *.tw -$GREP "\bdiscontentment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscontentment\b/discontent/g" *.tw -$GREP "\bdiscribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribe\b/describe/g" *.tw -$GREP "\bdiscribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribed\b/described/g" *.tw -$GREP "\bdiscribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribes\b/describes/g" *.tw -$GREP "\bdiscribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribing\b/describing/g" *.tw -$GREP "\bdisctinction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinction\b/distinction/g" *.tw -$GREP "\bdisctinctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinctive\b/distinctive/g" *.tw -$GREP "\bdisemination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisemination\b/dissemination/g" *.tw -$GREP "\bdisenchanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisenchanged\b/disenchanted/g" *.tw -$GREP "\bdisiplined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisiplined\b/disciplined/g" *.tw -$GREP "\bdisobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediance\b/disobedience/g" *.tw -$GREP "\bdisobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediant\b/disobedient/g" *.tw -$GREP "\bdisolved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisolved\b/dissolved/g" *.tw -$GREP "\bdisover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisover\b/discover/g" *.tw -$GREP "\bdispair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispair\b/despair/g" *.tw -$GREP "\bdisparingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisparingly\b/disparagingly/g" *.tw -$GREP "\bdispence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispence\b/dispense/g" *.tw -$GREP "\bdispenced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispenced\b/dispensed/g" *.tw -$GREP "\bdispencing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispencing\b/dispensing/g" *.tw -$GREP "\bdispicable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispicable\b/despicable/g" *.tw -$GREP "\bdispite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispite\b/despite/g" *.tw -$GREP "\bdispostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispostion\b/disposition/g" *.tw -$GREP "\bdisproportiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisproportiate\b/disproportionate/g" *.tw -$GREP "\bdisputandem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisputandem\b/disputandum/g" *.tw -$GREP "\bdisricts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisricts\b/districts/g" *.tw -$GREP "\bdissagreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissagreement\b/disagreement/g" *.tw -$GREP "\bdissapear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapear\b/disappear/g" *.tw -$GREP "\bdissapearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearance\b/disappearance/g" *.tw -$GREP "\bdissapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapeared\b/disappeared/g" *.tw -$GREP "\bdissapearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearing\b/disappearing/g" *.tw -$GREP "\bdissapears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapears\b/disappears/g" *.tw -$GREP "\bdissappear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappear\b/disappear/g" *.tw -$GREP "\bdissappears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappears\b/disappears/g" *.tw -$GREP "\bdissappointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappointed\b/disappointed/g" *.tw -$GREP "\bdissarray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissarray\b/disarray/g" *.tw -$GREP "\bdissobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediance\b/disobedience/g" *.tw -$GREP "\bdissobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediant\b/disobedient/g" *.tw -$GREP "\bdissobedience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedience\b/disobedience/g" *.tw -$GREP "\bdissobedient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedient\b/disobedient/g" *.tw -$GREP "\bdistiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistiction\b/distinction/g" *.tw -$GREP "\bdistingish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingish\b/distinguish/g" *.tw -$GREP "\bdistingished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingished\b/distinguished/g" *.tw -$GREP "\bdistingishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishes\b/distinguishes/g" *.tw -$GREP "\bdistingishing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishing\b/distinguishing/g" *.tw -$GREP "\bdistingquished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingquished\b/distinguished/g" *.tw -$GREP "\bdistrubution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistrubution\b/distribution/g" *.tw -$GREP "\bdistruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistruction\b/destruction/g" *.tw -$GREP "\bdistructive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistructive\b/destructive/g" *.tw -$GREP "\bditributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bditributed\b/distributed/g" *.tw -$GREP "\bdivice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivice\b/device/g" *.tw -$GREP "\bdivinition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivinition\b/divination/g" *.tw -$GREP "\bdivison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivison\b/division/g" *.tw -$GREP "\bdivisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivisons\b/divisions/g" *.tw -$GREP "\bdum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdum\b/dumb/g" *.tw -$GREP "\bdoccument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccument\b/document/g" *.tw -$GREP "\bdoccumented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccumented\b/documented/g" *.tw -$GREP "\bdoccuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccuments\b/documents/g" *.tw -$GREP "\bdocrines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocrines\b/doctrines/g" *.tw -$GREP "\bdoctines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoctines\b/doctrines/g" *.tw -$GREP "\bdocumenatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocumenatry\b/documentary/g" *.tw -$GREP "\bdoens\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoens\b/does/g" *.tw -$GREP "\bdoesnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoesnt\b/doesn't/g" *.tw -$GREP "\bdoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoign\b/doing/g" *.tw -$GREP "\bdominaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominaton\b/domination/g" *.tw -$GREP "\bdominent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominent\b/dominant/g" *.tw -$GREP "\bdominiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominiant\b/dominant/g" *.tw -$GREP "\bdonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdonig\b/doing/g" *.tw -$GREP "\bdosen't\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdosen't\b/doesn't/g" *.tw -$GREP "\bdoulbe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoulbe\b/double/g" *.tw -$GREP "\bdowloads\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdowloads\b/downloads/g" *.tw -$GREP "\bdramtic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdramtic\b/dramatic/g" *.tw -$GREP "\bdraughtman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdraughtman\b/draughtsman/g" *.tw -$GREP "\bDravadian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDravadian\b/Dravidian/g" *.tw -$GREP "\bdreasm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdreasm\b/dreams/g" *.tw -$GREP "\bdriectly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdriectly\b/directly/g" *.tw -$GREP "\bdrnik\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrnik\b/drink/g" *.tw -$GREP "\bdruming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdruming\b/drumming/g" *.tw -$GREP "\bdrummless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrummless\b/drumless/g" *.tw -$GREP "\bdupicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdupicate\b/duplicate/g" *.tw -$GREP "\bdurig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurig\b/during/g" *.tw -$GREP "\bdurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurring\b/during/g" *.tw -$GREP "\bduting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bduting\b/during/g" *.tw -$GREP "\bdyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdyas\b/dryas/g" *.tw -$GREP "\beahc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beahc\b/each/g" *.tw -$GREP "\bealier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bealier\b/earlier/g" *.tw -$GREP "\bearlies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearlies\b/earliest/g" *.tw -$GREP "\bearnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearnt\b/earned/g" *.tw -$GREP "\becclectic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becclectic\b/eclectic/g" *.tw -$GREP "\beceonomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beceonomy\b/economy/g" *.tw -$GREP "\becidious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becidious\b/deciduous/g" *.tw -$GREP "\beclispe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beclispe\b/eclipse/g" *.tw -$GREP "\becomonic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becomonic\b/economic/g" *.tw -$GREP "\bect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bect\b/etc/g" *.tw -$GREP "\beearly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beearly\b/early/g" *.tw -$GREP "\befel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befel\b/evil/g" *.tw -$GREP "\beffeciency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciency\b/efficiency/g" *.tw -$GREP "\beffecient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffecient\b/efficient/g" *.tw -$GREP "\beffeciently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciently\b/efficiently/g" *.tw -$GREP "\befficency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficency\b/efficiency/g" *.tw -$GREP "\befficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficent\b/efficient/g" *.tw -$GREP "\befficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficently\b/efficiently/g" *.tw -$GREP "\beffulence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffulence\b/effluence/g" *.tw -$GREP "\beiter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beiter\b/either/g" *.tw -$GREP "\belction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belction\b/election/g" *.tw -$GREP "\belectrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectrial\b/electrical/g" *.tw -$GREP "\belectricly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricly\b/electrically/g" *.tw -$GREP "\belectricty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricty\b/electricity/g" *.tw -$GREP "\belementay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belementay\b/elementary/g" *.tw -$GREP "\beleminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminated\b/eliminated/g" *.tw -$GREP "\beleminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminating\b/eliminating/g" *.tw -$GREP "\beles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beles\b/eels/g" *.tw -$GREP "\beletricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beletricity\b/electricity/g" *.tw -$GREP "\belicided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belicided\b/elicited/g" *.tw -$GREP "\beligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beligable\b/eligible/g" *.tw -$GREP "\belimentary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belimentary\b/elementary/g" *.tw -$GREP "\bellected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bellected\b/elected/g" *.tw -$GREP "\belphant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belphant\b/elephant/g" *.tw -$GREP "\bembarass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarass\b/embarrass/g" *.tw -$GREP "\bembarassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassed\b/embarrassed/g" *.tw -$GREP "\bembarassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassing\b/embarrassing/g" *.tw -$GREP "\bembarassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassment\b/embarrassment/g" *.tw -$GREP "\bembargos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembargos\b/embargoes/g" *.tw -$GREP "\bembarras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarras\b/embarrass/g" *.tw -$GREP "\bembarrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrased\b/embarrassed/g" *.tw -$GREP "\bembarrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasing\b/embarrassing/g" *.tw -$GREP "\bembarrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasment\b/embarrassment/g" *.tw -$GREP "\bembezelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembezelled\b/embezzled/g" *.tw -$GREP "\bemblamatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemblamatic\b/emblematic/g" *.tw -$GREP "\beminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminate\b/emanate/g" *.tw -$GREP "\beminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminated\b/emanated/g" *.tw -$GREP "\bemision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemision\b/emission/g" *.tw -$GREP "\bemited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemited\b/emitted/g" *.tw -$GREP "\bemiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemiting\b/emitting/g" *.tw -$GREP "\bemmediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmediately\b/immediately/g" *.tw -$GREP "\bemminently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemminently\b/eminently/g" *.tw -$GREP "\bemmisaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisaries\b/emissaries/g" *.tw -$GREP "\bemmisarries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarries\b/emissaries/g" *.tw -$GREP "\bemmisarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarry\b/emissary/g" *.tw -$GREP "\bemmisary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisary\b/emissary/g" *.tw -$GREP "\bemmision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmision\b/emission/g" *.tw -$GREP "\bemmisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisions\b/emissions/g" *.tw -$GREP "\bemmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmited\b/emitted/g" *.tw -$GREP "\bemmiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmiting\b/emitting/g" *.tw -$GREP "\bemmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitted\b/emitted/g" *.tw -$GREP "\bemmitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitting\b/emitting/g" *.tw -$GREP "\bemnity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemnity\b/enmity/g" *.tw -$GREP "\bemperical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemperical\b/empirical/g" *.tw -$GREP "\bemphaised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphaised\b/emphasised/g" *.tw -$GREP "\bemphsis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphsis\b/emphasis/g" *.tw -$GREP "\bemphysyma\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphysyma\b/emphysema/g" *.tw -$GREP "\bemporer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemporer\b/emperor/g" *.tw -$GREP "\bemprisoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemprisoned\b/imprisoned/g" *.tw -$GREP "\benameld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benameld\b/enameled/g" *.tw -$GREP "\benchancement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benchancement\b/enhancement/g" *.tw -$GREP "\bencouraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencouraing\b/encouraging/g" *.tw -$GREP "\bencryptiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencryptiion\b/encryption/g" *.tw -$GREP "\bencylopedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencylopedia\b/encyclopedia/g" *.tw -$GREP "\bendevors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevors\b/endeavors/g" *.tw -$GREP "\bendevour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevour\b/endeavour/g" *.tw -$GREP "\bendig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendig\b/ending/g" *.tw -$GREP "\bendolithes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendolithes\b/endoliths/g" *.tw -$GREP "\benduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benduce\b/induce/g" *.tw -$GREP "\bened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bened\b/need/g" *.tw -$GREP "\benforceing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benforceing\b/enforcing/g" *.tw -$GREP "\bengagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengagment\b/engagement/g" *.tw -$GREP "\bengeneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneer\b/engineer/g" *.tw -$GREP "\bengeneering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneering\b/engineering/g" *.tw -$GREP "\bengieneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneer\b/engineer/g" *.tw -$GREP "\bengieneers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneers\b/engineers/g" *.tw -$GREP "\benlargment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargment\b/enlargement/g" *.tw -$GREP "\benlargments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargments\b/enlargements/g" *.tw -$GREP "\benourmous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmous\b/enormous/g" *.tw -$GREP "\benourmously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmously\b/enormously/g" *.tw -$GREP "\bensconsed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bensconsed\b/ensconced/g" *.tw -$GREP "\bentaglements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentaglements\b/entanglements/g" *.tw -$GREP "\benteratinment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benteratinment\b/entertainment/g" *.tw -$GREP "\benthusiatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benthusiatic\b/enthusiastic/g" *.tw -$GREP "\bentitity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitity\b/entity/g" *.tw -$GREP "\bentitlied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitlied\b/entitled/g" *.tw -$GREP "\bentrepeneur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneur\b/entrepreneur/g" *.tw -$GREP "\bentrepeneurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneurs\b/entrepreneurs/g" *.tw -$GREP "\benviorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorment\b/environment/g" *.tw -$GREP "\benviormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormental\b/environmental/g" *.tw -$GREP "\benviormentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormentally\b/environmentally/g" *.tw -$GREP "\benviorments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorments\b/environments/g" *.tw -$GREP "\benviornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornment\b/environment/g" *.tw -$GREP "\benviornmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmental\b/environmental/g" *.tw -$GREP "\benviornmentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentalist\b/environmentalist/g" *.tw -$GREP "\benviornmentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentally\b/environmentally/g" *.tw -$GREP "\benviornments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornments\b/environments/g" *.tw -$GREP "\benviroment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroment\b/environment/g" *.tw -$GREP "\benviromental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromental\b/environmental/g" *.tw -$GREP "\benviromentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentalist\b/environmentalist/g" *.tw -$GREP "\benviromentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentally\b/environmentally/g" *.tw -$GREP "\benviroments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroments\b/environments/g" *.tw -$GREP "\benvolutionary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvolutionary\b/evolutionary/g" *.tw -$GREP "\benvrionments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvrionments\b/environments/g" *.tw -$GREP "\benxt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benxt\b/next/g" *.tw -$GREP "\bepidsodes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepidsodes\b/episodes/g" *.tw -$GREP "\bepsiode\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepsiode\b/episode/g" *.tw -$GREP "\bequialent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequialent\b/equivalent/g" *.tw -$GREP "\bequilibium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibium\b/equilibrium/g" *.tw -$GREP "\bequilibrum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibrum\b/equilibrium/g" *.tw -$GREP "\bequiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequiped\b/equipped/g" *.tw -$GREP "\bequippment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequippment\b/equipment/g" *.tw -$GREP "\bequitorial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequitorial\b/equatorial/g" *.tw -$GREP "\bequivelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelant\b/equivalent/g" *.tw -$GREP "\bequivelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelent\b/equivalent/g" *.tw -$GREP "\bequivilant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilant\b/equivalent/g" *.tw -$GREP "\bequivilent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilent\b/equivalent/g" *.tw -$GREP "\bequivlalent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivlalent\b/equivalent/g" *.tw -$GREP "\beratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratic\b/erratic/g" *.tw -$GREP "\beratically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratically\b/erratically/g" *.tw -$GREP "\beraticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beraticly\b/erratically/g" *.tw -$GREP "\berrupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\berrupted\b/erupted/g" *.tw -$GREP "\besential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besential\b/essential/g" *.tw -$GREP "\besitmated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besitmated\b/estimated/g" *.tw -$GREP "\besle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besle\b/else/g" *.tw -$GREP "\bespecialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bespecialy\b/especially/g" *.tw -$GREP "\bessencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessencial\b/essential/g" *.tw -$GREP "\bessense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessense\b/essence/g" *.tw -$GREP "\bessentail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentail\b/essential/g" *.tw -$GREP "\bessentialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentialy\b/essentially/g" *.tw -$GREP "\bessentual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentual\b/essential/g" *.tw -$GREP "\bessesital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessesital\b/essential/g" *.tw -$GREP "\bestabishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestabishes\b/establishes/g" *.tw -$GREP "\bestablising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestablising\b/establishing/g" *.tw -$GREP "\bethnocentricm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bethnocentricm\b/ethnocentrism/g" *.tw -$GREP "\bEuropian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropian\b/European/g" *.tw -$GREP "\bEuropians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropians\b/Europeans/g" *.tw -$GREP "\bEurpean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpean\b/European/g" *.tw -$GREP "\bEurpoean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpoean\b/European/g" *.tw -$GREP "\bevenhtually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevenhtually\b/eventually/g" *.tw -$GREP "\beventally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventally\b/eventually/g" *.tw -$GREP "\beventhough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventhough\b/even though/g" *.tw -$GREP "\beventially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventially\b/eventually/g" *.tw -$GREP "\beventualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventualy\b/eventually/g" *.tw -$GREP "\beverthing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverthing\b/everything/g" *.tw -$GREP "\beverytime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverytime\b/every time/g" *.tw -$GREP "\beveryting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveryting\b/everything/g" *.tw -$GREP "\beveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveyr\b/every/g" *.tw -$GREP "\bevidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevidentally\b/evidently/g" *.tw -$GREP "\bexagerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerate\b/exaggerate/g" *.tw -$GREP "\bexagerated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerated\b/exaggerated/g" *.tw -$GREP "\bexagerates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerates\b/exaggerates/g" *.tw -$GREP "\bexagerating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerating\b/exaggerating/g" *.tw -$GREP "\bexagerrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrate\b/exaggerate/g" *.tw -$GREP "\bexagerrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrated\b/exaggerated/g" *.tw -$GREP "\bexagerrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrates\b/exaggerates/g" *.tw -$GREP "\bexagerrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrating\b/exaggerating/g" *.tw -$GREP "\bexaminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexaminated\b/examined/g" *.tw -$GREP "\bexampt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexampt\b/exempt/g" *.tw -$GREP "\bexapansion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexapansion\b/expansion/g" *.tw -$GREP "\bexcact\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcact\b/exact/g" *.tw -$GREP "\bexcange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcange\b/exchange/g" *.tw -$GREP "\bexcecute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecute\b/execute/g" *.tw -$GREP "\bexcecuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuted\b/executed/g" *.tw -$GREP "\bexcecutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecutes\b/executes/g" *.tw -$GREP "\bexcecuting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuting\b/executing/g" *.tw -$GREP "\bexcecution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecution\b/execution/g" *.tw -$GREP "\bexcedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcedded\b/exceeded/g" *.tw -$GREP "\bexcelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcelent\b/excellent/g" *.tw -$GREP "\bexcell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcell\b/excel/g" *.tw -$GREP "\bexcellance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellance\b/excellence/g" *.tw -$GREP "\bexcellant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellant\b/excellent/g" *.tw -$GREP "\bexcells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcells\b/excels/g" *.tw -$GREP "\bexcercise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcercise\b/exercise/g" *.tw -$GREP "\bexchanching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexchanching\b/exchanging/g" *.tw -$GREP "\bexcisted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcisted\b/existed/g" *.tw -$GREP "\bexculsivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexculsivly\b/exclusively/g" *.tw -$GREP "\bexecising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexecising\b/exercising/g" *.tw -$GREP "\bexection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexection\b/execution/g" *.tw -$GREP "\bexectued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexectued\b/executed/g" *.tw -$GREP "\bexeedingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeedingly\b/exceedingly/g" *.tw -$GREP "\bexelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexelent\b/excellent/g" *.tw -$GREP "\bexellent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexellent\b/excellent/g" *.tw -$GREP "\bexemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexemple\b/example/g" *.tw -$GREP "\bexept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexept\b/except/g" *.tw -$GREP "\bexeptional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeptional\b/exceptional/g" *.tw -$GREP "\bexerbate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbate\b/exacerbate/g" *.tw -$GREP "\bexerbated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbated\b/exacerbated/g" *.tw -$GREP "\bexerciese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerciese\b/exercises/g" *.tw -$GREP "\bexerpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpt\b/excerpt/g" *.tw -$GREP "\bexerpts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpts\b/excerpts/g" *.tw -$GREP "\bexersize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexersize\b/exercise/g" *.tw -$GREP "\bexerternal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerternal\b/external/g" *.tw -$GREP "\bexhalted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhalted\b/exalted/g" *.tw -$GREP "\bexhibtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhibtion\b/exhibition/g" *.tw -$GREP "\bexibition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibition\b/exhibition/g" *.tw -$GREP "\bexibitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibitions\b/exhibitions/g" *.tw -$GREP "\bexicting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexicting\b/exciting/g" *.tw -$GREP "\bexinct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexinct\b/extinct/g" *.tw -$GREP "\bexistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistance\b/existence/g" *.tw -$GREP "\bexistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistant\b/existent/g" *.tw -$GREP "\bexistince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistince\b/existence/g" *.tw -$GREP "\bexliled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexliled\b/exiled/g" *.tw -$GREP "\bexludes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexludes\b/excludes/g" *.tw -$GREP "\bexmaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexmaple\b/example/g" *.tw -$GREP "\bexonorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexonorate\b/exonerate/g" *.tw -$GREP "\bexoskelaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexoskelaton\b/exoskeleton/g" *.tw -$GREP "\bexpalin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpalin\b/explain/g" *.tw -$GREP "\bexpatriot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpatriot\b/expatriate/g" *.tw -$GREP "\bexpeced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeced\b/expected/g" *.tw -$GREP "\bexpecially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpecially\b/especially/g" *.tw -$GREP "\bexpeditonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeditonary\b/expeditionary/g" *.tw -$GREP "\bexpeiments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeiments\b/experiments/g" *.tw -$GREP "\bexpell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpell\b/expel/g" *.tw -$GREP "\bexpells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpells\b/expels/g" *.tw -$GREP "\bexperiance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperiance\b/experience/g" *.tw -$GREP "\bexperianced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperianced\b/experienced/g" *.tw -$GREP "\bexpiditions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpiditions\b/expeditions/g" *.tw -$GREP "\bexpierence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpierence\b/experience/g" *.tw -$GREP "\bexplaination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaination\b/explanation/g" *.tw -$GREP "\bexplaning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaning\b/explaining/g" *.tw -$GREP "\bexplictly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplictly\b/explicitly/g" *.tw -$GREP "\bexploititive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexploititive\b/exploitative/g" *.tw -$GREP "\bexplotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplotation\b/exploitation/g" *.tw -$GREP "\bexpropiated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiated\b/expropriated/g" *.tw -$GREP "\bexpropiation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiation\b/expropriation/g" *.tw -$GREP "\bexressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexressed\b/expressed/g" *.tw -$GREP "\bextemely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextemely\b/extremely/g" *.tw -$GREP "\bextention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextention\b/extension/g" *.tw -$GREP "\bextentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextentions\b/extensions/g" *.tw -$GREP "\bextered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextered\b/exerted/g" *.tw -$GREP "\bextermist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextermist\b/extremist/g" *.tw -$GREP "\bextradiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextradiction\b/extradition/g" *.tw -$GREP "\bextraterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestial\b/extraterrestrial/g" *.tw -$GREP "\bextraterrestials\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestials\b/extraterrestrials/g" *.tw -$GREP "\bextravagent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextravagent\b/extravagant/g" *.tw -$GREP "\bextrememly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrememly\b/extremely/g" *.tw -$GREP "\bextremeophile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremeophile\b/extremophile/g" *.tw -$GREP "\bextremly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremly\b/extremely/g" *.tw -$GREP "\bextrordinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinarily\b/extraordinarily/g" *.tw -$GREP "\bextrordinary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinary\b/extraordinary/g" *.tw -$GREP "\bfaciliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliate\b/facilitate/g" *.tw -$GREP "\bfaciliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliated\b/facilitated/g" *.tw -$GREP "\bfaciliates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliates\b/facilitates/g" *.tw -$GREP "\bfacilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacilites\b/facilities/g" *.tw -$GREP "\bfacillitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacillitate\b/facilitate/g" *.tw -$GREP "\bfacinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacinated\b/fascinated/g" *.tw -$GREP "\bfacist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacist\b/fascist/g" *.tw -$GREP "\bfamiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamiles\b/families/g" *.tw -$GREP "\bfamilliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamilliar\b/familiar/g" *.tw -$GREP "\bfamoust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamoust\b/famous/g" *.tw -$GREP "\bfanatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfanatism\b/fanaticism/g" *.tw -$GREP "\bFarenheit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFarenheit\b/Fahrenheit/g" *.tw -$GREP "\bfatc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfatc\b/fact/g" *.tw -$GREP "\bfaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaught\b/fought/g" *.tw -$GREP "\bfavoutrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfavoutrable\b/favourable/g" *.tw -$GREP "\bfeasable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfeasable\b/feasible/g" *.tw -$GREP "\bFebuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFebuary\b/February/g" *.tw -$GREP "\bFeburary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFeburary\b/February/g" *.tw -$GREP "\bfedreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfedreally\b/federally/g" *.tw -$GREP "\bfemminist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfemminist\b/feminist/g" *.tw -$GREP "\bferomone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bferomone\b/pheromone/g" *.tw -$GREP "\bfertily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfertily\b/fertility/g" *.tw -$GREP "\bfianite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianite\b/finite/g" *.tw -$GREP "\bfianlly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianlly\b/finally/g" *.tw -$GREP "\bficticious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bficticious\b/fictitious/g" *.tw -$GREP "\bfictious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfictious\b/fictitious/g" *.tw -$GREP "\bfidn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfidn\b/find/g" *.tw -$GREP "\bfiercly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiercly\b/fiercely/g" *.tw -$GREP "\bfightings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfightings\b/fighting/g" *.tw -$GREP "\bfiliament\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiliament\b/filament/g" *.tw -$GREP "\bfimilies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfimilies\b/families/g" *.tw -$GREP "\bfinacial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinacial\b/financial/g" *.tw -$GREP "\bfinaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinaly\b/finally/g" *.tw -$GREP "\bfinancialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinancialy\b/financially/g" *.tw -$GREP "\bfirends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfirends\b/friends/g" *.tw -$GREP "\bfisionable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfisionable\b/fissionable/g" *.tw -$GREP "\bflamable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflamable\b/flammable/g" *.tw -$GREP "\bflawess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflawess\b/flawless/g" *.tw -$GREP "\bFlemmish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFlemmish\b/Flemish/g" *.tw -$GREP "\bflorescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflorescent\b/fluorescent/g" *.tw -$GREP "\bflourescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourescent\b/fluorescent/g" *.tw -$GREP "\bflourine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourine\b/fluorine/g" *.tw -$GREP "\bfluorish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfluorish\b/flourish/g" *.tw -$GREP "\bflourishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourishment\b/flourishing/g" *.tw -$GREP "\bfollwoing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfollwoing\b/following/g" *.tw -$GREP "\bfolowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfolowing\b/following/g" *.tw -$GREP "\bfomed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfomed\b/formed/g" *.tw -$GREP "\bfonetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfonetic\b/phonetic/g" *.tw -$GREP "\bfontrier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfontrier\b/fontier/g" *.tw -$GREP "\bfoootball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoootball\b/football/g" *.tw -$GREP "\bforbad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbad\b/forbade/g" *.tw -$GREP "\bforbiden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbiden\b/forbidden/g" *.tw -$GREP "\bforeward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforeward\b/foreword/g" *.tw -$GREP "\bforfiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforfiet\b/forfeit/g" *.tw -$GREP "\bforhead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforhead\b/forehead/g" *.tw -$GREP "\bforiegn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforiegn\b/foreign/g" *.tw -$GREP "\bFormalhaut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFormalhaut\b/Fomalhaut/g" *.tw -$GREP "\bformallize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallize\b/formalize/g" *.tw -$GREP "\bformallized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallized\b/formalized/g" *.tw -$GREP "\bformelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformelly\b/formerly/g" *.tw -$GREP "\bformidible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformidible\b/formidable/g" *.tw -$GREP "\bformost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformost\b/foremost/g" *.tw -$GREP "\bforsaw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforsaw\b/foresaw/g" *.tw -$GREP "\bforseeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforseeable\b/foreseeable/g" *.tw -$GREP "\bfortelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfortelling\b/foretelling/g" *.tw -$GREP "\bforunner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforunner\b/forerunner/g" *.tw -$GREP "\bfoucs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoucs\b/focus/g" *.tw -$GREP "\bfoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoudn\b/found/g" *.tw -$GREP "\bfougth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfougth\b/fought/g" *.tw -$GREP "\bfoundaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundaries\b/foundries/g" *.tw -$GREP "\bfoundary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundary\b/foundry/g" *.tw -$GREP "\bFoundland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFoundland\b/Newfoundland/g" *.tw -$GREP "\bfourties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourties\b/forties/g" *.tw -$GREP "\bfourty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourty\b/forty/g" *.tw -$GREP "\bfouth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfouth\b/fourth/g" *.tw -$GREP "\bfoward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoward\b/forward/g" *.tw -$GREP "\bFransiscan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscan\b/Franciscan/g" *.tw -$GREP "\bFransiscans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscans\b/Franciscans/g" *.tw -$GREP "\bfreind\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreind\b/friend/g" *.tw -$GREP "\bfreindly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreindly\b/friendly/g" *.tw -$GREP "\bfrequentily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrequentily\b/frequently/g" *.tw -$GREP "\bfrome\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrome\b/from/g" *.tw -$GREP "\bfromed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfromed\b/formed/g" *.tw -$GREP "\bfroniter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfroniter\b/frontier/g" *.tw -$GREP "\bfucntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntion\b/function/g" *.tw -$GREP "\bfucntioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntioning\b/functioning/g" *.tw -$GREP "\bfufill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufill\b/fulfill/g" *.tw -$GREP "\bfufilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufilled\b/fulfilled/g" *.tw -$GREP "\bfulfiled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfulfiled\b/fulfilled/g" *.tw -$GREP "\bfullfill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfill\b/fulfill/g" *.tw -$GREP "\bfullfilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfilled\b/fulfilled/g" *.tw -$GREP "\bfundametal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametal\b/fundamental/g" *.tw -$GREP "\bfundametals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametals\b/fundamentals/g" *.tw -$GREP "\bfunguses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfunguses\b/fungi/g" *.tw -$GREP "\bfuntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuntion\b/function/g" *.tw -$GREP "\bfuruther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuruther\b/further/g" *.tw -$GREP "\bfuther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuther\b/further/g" *.tw -$GREP "\bfuthermore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuthermore\b/furthermore/g" *.tw -$GREP "\bgalatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalatic\b/galactic/g" *.tw -$GREP "\bGalations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGalations\b/Galatians/g" *.tw -$GREP "\bgallaxies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgallaxies\b/galaxies/g" *.tw -$GREP "\bgalvinized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalvinized\b/galvanized/g" *.tw -$GREP "\bGameboy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGameboy\b/Game Boy/g" *.tw -$GREP "\bganerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganerate\b/generate/g" *.tw -$GREP "\bganes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganes\b/games/g" *.tw -$GREP "\bganster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganster\b/gangster/g" *.tw -$GREP "\bgarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantee\b/guarantee/g" *.tw -$GREP "\bgaranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaranteed\b/guaranteed/g" *.tw -$GREP "\bgarantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantees\b/guarantees/g" *.tw -$GREP "\bgardai\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgardai\b/gardaÃ/g" *.tw -$GREP "\bgarnison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarnison\b/garrison/g" *.tw -$GREP "\bgauarana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauarana\b/guaraná/g" *.tw -$GREP "\bgaurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantee\b/guarantee/g" *.tw -$GREP "\bgauranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauranteed\b/guaranteed/g" *.tw -$GREP "\bgaurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantees\b/guarantees/g" *.tw -$GREP "\bgaurentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentee\b/guarantee/g" *.tw -$GREP "\bgaurenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurenteed\b/guaranteed/g" *.tw -$GREP "\bgaurentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentees\b/guarantees/g" *.tw -$GREP "\bgeneological\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneological\b/genealogical/g" *.tw -$GREP "\bgeneologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneologies\b/genealogies/g" *.tw -$GREP "\bgeneology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneology\b/genealogy/g" *.tw -$GREP "\bgeneraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneraly\b/generally/g" *.tw -$GREP "\bgeneratting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneratting\b/generating/g" *.tw -$GREP "\bgenialia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgenialia\b/genitalia/g" *.tw -$GREP "\bgeographicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeographicial\b/geographical/g" *.tw -$GREP "\bgeometrician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometrician\b/geometer/g" *.tw -$GREP "\bgeometricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometricians\b/geometers/g" *.tw -$GREP "\bgerat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgerat\b/great/g" *.tw -$GREP "\bGhandi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGhandi\b/Gandhi/g" *.tw -$GREP "\bglamourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglamourous\b/glamorous/g" *.tw -$GREP "\bglight\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglight\b/flight/g" *.tw -$GREP "\bgnawwed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgnawwed\b/gnawed/g" *.tw -$GREP "\bgodess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodess\b/goddess/g" *.tw -$GREP "\bgodesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodesses\b/goddesses/g" *.tw -$GREP "\bGodounov\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGodounov\b/Godunov/g" *.tw -$GREP "\bgoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoign\b/going/g" *.tw -$GREP "\bgonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgonig\b/going/g" *.tw -$GREP "\bGothenberg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGothenberg\b/Gothenburg/g" *.tw -$GREP "\bGottleib\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGottleib\b/Gottlieb/g" *.tw -$GREP "\bgouvener\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgouvener\b/governor/g" *.tw -$GREP "\bgovement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovement\b/government/g" *.tw -$GREP "\bgovenment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenment\b/government/g" *.tw -$GREP "\bgovenrment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenrment\b/government/g" *.tw -$GREP "\bgoverance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverance\b/governance/g" *.tw -$GREP "\bgoverment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverment\b/government/g" *.tw -$GREP "\bgovermental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovermental\b/governmental/g" *.tw -$GREP "\bgoverner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverner\b/governor/g" *.tw -$GREP "\bgovernmnet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovernmnet\b/government/g" *.tw -$GREP "\bgovorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovorment\b/government/g" *.tw -$GREP "\bgovormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovormental\b/governmental/g" *.tw -$GREP "\bgovornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovornment\b/government/g" *.tw -$GREP "\bgracefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgracefull\b/graceful/g" *.tw -$GREP "\bgraet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgraet\b/great/g" *.tw -$GREP "\bgrafitti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrafitti\b/graffiti/g" *.tw -$GREP "\bgramatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgramatically\b/grammatically/g" *.tw -$GREP "\bgrammaticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammaticaly\b/grammatically/g" *.tw -$GREP "\bgrammer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammer\b/grammar/g" *.tw -$GREP "\bgrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrat\b/great/g" *.tw -$GREP "\bgratuitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgratuitious\b/gratuitous/g" *.tw -$GREP "\bgreatful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatful\b/grateful/g" *.tw -$GREP "\bgreatfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatfully\b/gratefully/g" *.tw -$GREP "\bgreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreif\b/grief/g" *.tw -$GREP "\bgridles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgridles\b/griddles/g" *.tw -$GREP "\bgropu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgropu\b/group/g" *.tw -$GREP "\bgrwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrwo\b/grow/g" *.tw -$GREP "\bguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguage\b/gauge/g" *.tw -$GREP "\bguarentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentee\b/guarantee/g" *.tw -$GREP "\bguarenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarenteed\b/guaranteed/g" *.tw -$GREP "\bguarentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentees\b/guarantees/g" *.tw -$GREP "\bGuatamala\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamala\b/Guatemala/g" *.tw -$GREP "\bGuatamalan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamalan\b/Guatemalan/g" *.tw -$GREP "\bguerrila\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrila\b/guerrilla/g" *.tw -$GREP "\bguerrilas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrilas\b/guerrillas/g" *.tw -$GREP "\bguidence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguidence\b/guidance/g" *.tw -$GREP "\bGuilia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilia\b/Giulia/g" *.tw -$GREP "\bGuilio\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilio\b/Giulio/g" *.tw -$GREP "\bGuiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiness\b/Guinness/g" *.tw -$GREP "\bGuiseppe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiseppe\b/Giuseppe/g" *.tw -$GREP "\bgunanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgunanine\b/guanine/g" *.tw -$GREP "\bgurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantee\b/guarantee/g" *.tw -$GREP "\bguranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguranteed\b/guaranteed/g" *.tw -$GREP "\bgurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantees\b/guarantees/g" *.tw -$GREP "\bguttaral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguttaral\b/guttural/g" *.tw -$GREP "\bgutteral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgutteral\b/guttural/g" *.tw -$GREP "\bhabaeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabaeus\b/habeas/g" *.tw -$GREP "\bhabeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabeus\b/habeas/g" *.tw -$GREP "\bHabsbourg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHabsbourg\b/Habsburg/g" *.tw -$GREP "\bhaemorrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaemorrage\b/haemorrhage/g" *.tw -$GREP "\bhalarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalarious\b/hilarious/g" *.tw -$GREP "\bhalp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalp\b/help/g" *.tw -$GREP "\bhapen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapen\b/happen/g" *.tw -$GREP "\bhapened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapened\b/happened/g" *.tw -$GREP "\bhapening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapening\b/happening/g" *.tw -$GREP "\bhappend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappend\b/happened/g" *.tw -$GREP "\bhappended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappended\b/happened/g" *.tw -$GREP "\bhappenned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappenned\b/happened/g" *.tw -$GREP "\bharased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharased\b/harassed/g" *.tw -$GREP "\bharases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharases\b/harasses/g" *.tw -$GREP "\bharasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasment\b/harassment/g" *.tw -$GREP "\bharasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasments\b/harassments/g" *.tw -$GREP "\bharassement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharassement\b/harassment/g" *.tw -$GREP "\bharras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharras\b/harass/g" *.tw -$GREP "\bharrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrased\b/harassed/g" *.tw -$GREP "\bharrases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrases\b/harasses/g" *.tw -$GREP "\bharrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasing\b/harassing/g" *.tw -$GREP "\bharrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasment\b/harassment/g" *.tw -$GREP "\bharrasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasments\b/harassments/g" *.tw -$GREP "\bharrassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassed\b/harassed/g" *.tw -$GREP "\bharrasses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasses\b/harassed/g" *.tw -$GREP "\bharrassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassing\b/harassing/g" *.tw -$GREP "\bharrassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassment\b/harassment/g" *.tw -$GREP "\bharrassments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassments\b/harassments/g" *.tw -$GREP "\bhasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhasnt\b/hasn't/g" *.tw -$GREP "\bHatian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHatian\b/Haitian/g" *.tw -$GREP "\bhaviest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaviest\b/heaviest/g" *.tw -$GREP "\bheadquarer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquarer\b/headquarter/g" *.tw -$GREP "\bheadquater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquater\b/headquarter/g" *.tw -$GREP "\bheadquatered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquatered\b/headquartered/g" *.tw -$GREP "\bheadquaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquaters\b/headquarters/g" *.tw -$GREP "\bhealthercare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhealthercare\b/healthcare/g" *.tw -$GREP "\bheared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheared\b/heard/g" *.tw -$GREP "\bheathy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheathy\b/healthy/g" *.tw -$GREP "\bHeidelburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHeidelburg\b/Heidelberg/g" *.tw -$GREP "\bheigher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheigher\b/higher/g" *.tw -$GREP "\bheirarchy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheirarchy\b/hierarchy/g" *.tw -$GREP "\bheiroglyphics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheiroglyphics\b/hieroglyphics/g" *.tw -$GREP "\bhelment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelment\b/helmet/g" *.tw -$GREP "\bhelpfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpfull\b/helpful/g" *.tw -$GREP "\bhelpped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpped\b/helped/g" *.tw -$GREP "\bhemmorhage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhemmorhage\b/hemorrhage/g" *.tw -$GREP "\bheridity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheridity\b/heredity/g" *.tw -$GREP "\bheroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheroe\b/hero/g" *.tw -$GREP "\bheros\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheros\b/heroes/g" *.tw -$GREP "\bhertiage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertiage\b/heritage/g" *.tw -$GREP "\bhertzs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertzs\b/hertz/g" *.tw -$GREP "\bhesistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhesistant\b/hesitant/g" *.tw -$GREP "\bheterogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheterogenous\b/heterogeneous/g" *.tw -$GREP "\bhieght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieght\b/height/g" *.tw -$GREP "\bhierachical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachical\b/hierarchical/g" *.tw -$GREP "\bhierachies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachies\b/hierarchies/g" *.tw -$GREP "\bhierachy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachy\b/hierarchy/g" *.tw -$GREP "\bhierarcical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcical\b/hierarchical/g" *.tw -$GREP "\bhierarcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcy\b/hierarchy/g" *.tw -$GREP "\bhieroglph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglph\b/hieroglyph/g" *.tw -$GREP "\bhieroglphs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglphs\b/hieroglyphs/g" *.tw -$GREP "\bhiger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhiger\b/higher/g" *.tw -$GREP "\bhigest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigest\b/highest/g" *.tw -$GREP "\bhigway\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigway\b/highway/g" *.tw -$GREP "\bhillarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhillarious\b/hilarious/g" *.tw -$GREP "\bhimselv\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhimselv\b/himself/g" *.tw -$GREP "\bhinderance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderance\b/hindrance/g" *.tw -$GREP "\bhinderence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderence\b/hindrance/g" *.tw -$GREP "\bhindrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhindrence\b/hindrance/g" *.tw -$GREP "\bhipopotamus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhipopotamus\b/hippopotamus/g" *.tw -$GREP "\bhismelf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhismelf\b/himself/g" *.tw -$GREP "\bhistocompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistocompatability\b/histocompatibility/g" *.tw -$GREP "\bhistoricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistoricians\b/historians/g" *.tw -$GREP "\bhitsingles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhitsingles\b/hit singles/g" *.tw -$GREP "\bholf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholf\b/hold/g" *.tw -$GREP "\bholliday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholliday\b/holiday/g" *.tw -$GREP "\bhomestate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomestate\b/home state/g" *.tw -$GREP "\bhomogeneize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneize\b/homogenize/g" *.tw -$GREP "\bhomogeneized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneized\b/homogenized/g" *.tw -$GREP "\bhonory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhonory\b/honorary/g" *.tw -$GREP "\bhorrifing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhorrifing\b/horrifying/g" *.tw -$GREP "\bhosited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhosited\b/hoisted/g" *.tw -$GREP "\bhospitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhospitible\b/hospitable/g" *.tw -$GREP "\bhounour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhounour\b/honour/g" *.tw -$GREP "\bhowver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhowver\b/however/g" *.tw -$GREP "\bhsitorians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhsitorians\b/historians/g" *.tw -$GREP "\bhstory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhstory\b/history/g" *.tw -$GREP "\bhtey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtey\b/they/g" *.tw -$GREP "\bhtikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtikn\b/think/g" *.tw -$GREP "\bhting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhting\b/thing/g" *.tw -$GREP "\bhtink\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtink\b/think/g" *.tw -$GREP "\bhtis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtis\b/this/g" *.tw -$GREP "\bhuminoid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhuminoid\b/humanoid/g" *.tw -$GREP "\bhumoural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumoural\b/humoral/g" *.tw -$GREP "\bhumurous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumurous\b/humorous/g" *.tw -$GREP "\bhusban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhusban\b/husband/g" *.tw -$GREP "\bhvae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvae\b/have/g" *.tw -$GREP "\bhvaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvaing\b/having/g" *.tw -$GREP "\bhwihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwihc\b/which/g" *.tw -$GREP "\bhwile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwile\b/while/g" *.tw -$GREP "\bhwole\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwole\b/whole/g" *.tw -$GREP "\bhydogen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydogen\b/hydrogen/g" *.tw -$GREP "\bhydropile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropile\b/hydrophile/g" *.tw -$GREP "\bhydropilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropilic\b/hydrophilic/g" *.tw -$GREP "\bhydropobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobe\b/hydrophobe/g" *.tw -$GREP "\bhydropobic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobic\b/hydrophobic/g" *.tw -$GREP "\bhygeine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhygeine\b/hygiene/g" *.tw -$GREP "\bhyjack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjack\b/hijack/g" *.tw -$GREP "\bhyjacking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjacking\b/hijacking/g" *.tw -$GREP "\bhypocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocracy\b/hypocrisy/g" *.tw -$GREP "\bhypocrasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrasy\b/hypocrisy/g" *.tw -$GREP "\bhypocricy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocricy\b/hypocrisy/g" *.tw -$GREP "\bhypocrit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrit\b/hypocrite/g" *.tw -$GREP "\bhypocrits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrits\b/hypocrites/g" *.tw -$GREP "\biconclastic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biconclastic\b/iconoclastic/g" *.tw -$GREP "\bidaeidae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaeidae\b/idea/g" *.tw -$GREP "\bidaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaes\b/ideas/g" *.tw -$GREP "\bidealogies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogies\b/ideologies/g" *.tw -$GREP "\bidealogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogy\b/ideology/g" *.tw -$GREP "\bidenticial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidenticial\b/identical/g" *.tw -$GREP "\bidentifers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidentifers\b/identifiers/g" *.tw -$GREP "\bideosyncratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bideosyncratic\b/idiosyncratic/g" *.tw -$GREP "\bidiosyncracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidiosyncracy\b/idiosyncrasy/g" *.tw -$GREP "\bIhaca\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIhaca\b/Ithaca/g" *.tw -$GREP "\billegimacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegimacy\b/illegitimacy/g" *.tw -$GREP "\billegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegitmate\b/illegitimate/g" *.tw -$GREP "\billess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billess\b/illness/g" *.tw -$GREP "\billiegal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billiegal\b/illegal/g" *.tw -$GREP "\billution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billution\b/illusion/g" *.tw -$GREP "\bilness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilness\b/illness/g" *.tw -$GREP "\bilogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilogical\b/illogical/g" *.tw -$GREP "\bimagenary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagenary\b/imaginary/g" *.tw -$GREP "\bimagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagin\b/imagine/g" *.tw -$GREP "\bimcomplete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimcomplete\b/incomplete/g" *.tw -$GREP "\bimediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimediately\b/immediately/g" *.tw -$GREP "\bimense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimense\b/immense/g" *.tw -$GREP "\bimmediatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatley\b/immediately/g" *.tw -$GREP "\bimmediatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatly\b/immediately/g" *.tw -$GREP "\bimmidately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidately\b/immediately/g" *.tw -$GREP "\bimmidiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidiately\b/immediately/g" *.tw -$GREP "\bimmitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitate\b/imitate/g" *.tw -$GREP "\bimmitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitated\b/imitated/g" *.tw -$GREP "\bimmitating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitating\b/imitating/g" *.tw -$GREP "\bimmitator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitator\b/imitator/g" *.tw -$GREP "\bimmunosupressant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmunosupressant\b/immunosuppressant/g" *.tw -$GREP "\bimpecabbly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpecabbly\b/impeccably/g" *.tw -$GREP "\bimpedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpedence\b/impedance/g" *.tw -$GREP "\bimplamenting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplamenting\b/implementing/g" *.tw -$GREP "\bimpliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpliment\b/implement/g" *.tw -$GREP "\bimplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplimented\b/implemented/g" *.tw -$GREP "\bimploys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimploys\b/employs/g" *.tw -$GREP "\bimportamt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimportamt\b/important/g" *.tw -$GREP "\bimpressario\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpressario\b/impresario/g" *.tw -$GREP "\bimprioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprioned\b/imprisoned/g" *.tw -$GREP "\bimprisonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprisonned\b/imprisoned/g" *.tw -$GREP "\bimprovision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovision\b/improvisation/g" *.tw -$GREP "\bimprovments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovments\b/improvements/g" *.tw -$GREP "\binablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binablility\b/inability/g" *.tw -$GREP "\binaccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaccessable\b/inaccessible/g" *.tw -$GREP "\binadiquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadiquate\b/inadequate/g" *.tw -$GREP "\binadquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadquate\b/inadequate/g" *.tw -$GREP "\binadvertant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertant\b/inadvertent/g" *.tw -$GREP "\binadvertantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertantly\b/inadvertently/g" *.tw -$GREP "\binagurated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binagurated\b/inaugurated/g" *.tw -$GREP "\binaguration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaguration\b/inauguration/g" *.tw -$GREP "\binappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binappropiate\b/inappropriate/g" *.tw -$GREP "\binaugures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaugures\b/inaugurates/g" *.tw -$GREP "\binbalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalance\b/imbalance/g" *.tw -$GREP "\binbalanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalanced\b/imbalanced/g" *.tw -$GREP "\binbetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbetween\b/between/g" *.tw -$GREP "\bincarcirated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincarcirated\b/incarcerated/g" *.tw -$GREP "\bincidentially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidentially\b/incidentally/g" *.tw -$GREP "\bincidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidently\b/incidentally/g" *.tw -$GREP "\binclreased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclreased\b/increased/g" *.tw -$GREP "\binclud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclud\b/include/g" *.tw -$GREP "\bincludng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincludng\b/including/g" *.tw -$GREP "\bincompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatabilities\b/incompatibilities/g" *.tw -$GREP "\bincompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatability\b/incompatibility/g" *.tw -$GREP "\bincompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatable\b/incompatible/g" *.tw -$GREP "\bincompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablities\b/incompatibilities/g" *.tw -$GREP "\bincompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablity\b/incompatibility/g" *.tw -$GREP "\bincompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblities\b/incompatibilities/g" *.tw -$GREP "\bincompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblity\b/incompatibility/g" *.tw -$GREP "\bincompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetance\b/incompetence/g" *.tw -$GREP "\bincompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetant\b/incompetent/g" *.tw -$GREP "\bincomptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptable\b/incompatible/g" *.tw -$GREP "\bincomptetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptetent\b/incompetent/g" *.tw -$GREP "\binconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binconsistant\b/inconsistent/g" *.tw -$GREP "\bincoroporated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincoroporated\b/incorporated/g" *.tw -$GREP "\bincorperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorperation\b/incorporation/g" *.tw -$GREP "\bincorportaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorportaed\b/incorporated/g" *.tw -$GREP "\bincorprates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorprates\b/incorporates/g" *.tw -$GREP "\bincorruptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorruptable\b/incorruptible/g" *.tw -$GREP "\bincramentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincramentally\b/incrementally/g" *.tw -$GREP "\bincreadible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincreadible\b/incredible/g" *.tw -$GREP "\bincredable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincredable\b/incredible/g" *.tw -$GREP "\binctroduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduce\b/introduce/g" *.tw -$GREP "\binctroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduced\b/introduced/g" *.tw -$GREP "\bincuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincuding\b/including/g" *.tw -$GREP "\bincunabla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincunabla\b/incunabula/g" *.tw -$GREP "\bindefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinately\b/indefinitely/g" *.tw -$GREP "\bindefineable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefineable\b/undefinable/g" *.tw -$GREP "\bindefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinitly\b/indefinitely/g" *.tw -$GREP "\bindentical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindentical\b/identical/g" *.tw -$GREP "\bindepedantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedantly\b/independently/g" *.tw -$GREP "\bindepedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedence\b/independence/g" *.tw -$GREP "\bindependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependance\b/independence/g" *.tw -$GREP "\bindependant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependant\b/independent/g" *.tw -$GREP "\bindependantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependantly\b/independently/g" *.tw -$GREP "\bindependece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependece\b/independence/g" *.tw -$GREP "\bindependendet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependendet\b/independent/g" *.tw -$GREP "\bindespensable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensable\b/indispensable/g" *.tw -$GREP "\bindespensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensible\b/indispensable/g" *.tw -$GREP "\bindictement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindictement\b/indictment/g" *.tw -$GREP "\bindigineous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindigineous\b/indigenous/g" *.tw -$GREP "\bindipendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendence\b/independence/g" *.tw -$GREP "\bindipendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendent\b/independent/g" *.tw -$GREP "\bindipendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendently\b/independently/g" *.tw -$GREP "\bindispensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindispensible\b/indispensable/g" *.tw -$GREP "\bindisputible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputible\b/indisputable/g" *.tw -$GREP "\bindisputibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputibly\b/indisputably/g" *.tw -$GREP "\bindite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindite\b/indict/g" *.tw -$GREP "\bindividualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindividualy\b/individually/g" *.tw -$GREP "\bindpendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendent\b/independent/g" *.tw -$GREP "\bindpendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendently\b/independently/g" *.tw -$GREP "\bindulgue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindulgue\b/indulge/g" *.tw -$GREP "\bindutrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindutrial\b/industrial/g" *.tw -$GREP "\bindviduals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindviduals\b/individuals/g" *.tw -$GREP "\binefficienty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binefficienty\b/inefficiently/g" *.tw -$GREP "\binevatible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevatible\b/inevitable/g" *.tw -$GREP "\binevitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevitible\b/inevitable/g" *.tw -$GREP "\binevititably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevititably\b/inevitably/g" *.tw -$GREP "\binfalability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfalability\b/infallibility/g" *.tw -$GREP "\binfallable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfallable\b/infallible/g" *.tw -$GREP "\binfectuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfectuous\b/infectious/g" *.tw -$GREP "\binfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfered\b/inferred/g" *.tw -$GREP "\binfilitrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrate\b/infiltrate/g" *.tw -$GREP "\binfilitrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrated\b/infiltrated/g" *.tw -$GREP "\binfilitration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitration\b/infiltration/g" *.tw -$GREP "\binfinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfinit\b/infinite/g" *.tw -$GREP "\binflamation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binflamation\b/inflammation/g" *.tw -$GREP "\binfluencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluencial\b/influential/g" *.tw -$GREP "\binfluented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluented\b/influenced/g" *.tw -$GREP "\binfomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfomation\b/information/g" *.tw -$GREP "\binformtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binformtion\b/information/g" *.tw -$GREP "\binfrantryman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrantryman\b/infantryman/g" *.tw -$GREP "\binfrigement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrigement\b/infringement/g" *.tw -$GREP "\bingenius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingenius\b/ingenious/g" *.tw -$GREP "\bingreediants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingreediants\b/ingredients/g" *.tw -$GREP "\binhabitans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binhabitans\b/inhabitants/g" *.tw -$GREP "\binherantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binherantly\b/inherently/g" *.tw -$GREP "\binheritence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binheritence\b/inheritance/g" *.tw -$GREP "\binital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binital\b/initial/g" *.tw -$GREP "\binitally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitally\b/initially/g" *.tw -$GREP "\binitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitation\b/initiation/g" *.tw -$GREP "\binitiaitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitiaitive\b/initiative/g" *.tw -$GREP "\binlcuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binlcuding\b/including/g" *.tw -$GREP "\binmigrant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrant\b/immigrant/g" *.tw -$GREP "\binmigrants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrants\b/immigrants/g" *.tw -$GREP "\binnoculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binnoculated\b/inoculated/g" *.tw -$GREP "\binocence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binocence\b/innocence/g" *.tw -$GREP "\binofficial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binofficial\b/unofficial/g" *.tw -$GREP "\binot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binot\b/into/g" *.tw -$GREP "\binpeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpeach\b/impeach/g" *.tw -$GREP "\binpending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpending\b/impending/g" *.tw -$GREP "\binpenetrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpenetrable\b/impenetrable/g" *.tw -$GREP "\binpolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpolite\b/impolite/g" *.tw -$GREP "\binprisonment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binprisonment\b/imprisonment/g" *.tw -$GREP "\binproving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binproving\b/improving/g" *.tw -$GREP "\binsectiverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsectiverous\b/insectivorous/g" *.tw -$GREP "\binsensative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsensative\b/insensitive/g" *.tw -$GREP "\binseperable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binseperable\b/inseparable/g" *.tw -$GREP "\binsistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsistance\b/insistence/g" *.tw -$GREP "\binsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitution\b/institution/g" *.tw -$GREP "\binsitutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitutions\b/institutions/g" *.tw -$GREP "\binstade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstade\b/instead/g" *.tw -$GREP "\binstatance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstatance\b/instance/g" *.tw -$GREP "\binstitue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstitue\b/institute/g" *.tw -$GREP "\binstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuction\b/instruction/g" *.tw -$GREP "\binstuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuments\b/instruments/g" *.tw -$GREP "\binstutionalized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutionalized\b/institutionalized/g" *.tw -$GREP "\binstutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutions\b/intuitions/g" *.tw -$GREP "\binsurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsurence\b/insurance/g" *.tw -$GREP "\bintelectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintelectual\b/intellectual/g" *.tw -$GREP "\binteligence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligence\b/intelligence/g" *.tw -$GREP "\binteligent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligent\b/intelligent/g" *.tw -$GREP "\bintenational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintenational\b/international/g" *.tw -$GREP "\bintepretation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretation\b/interpretation/g" *.tw -$GREP "\bintepretator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretator\b/interpretor/g" *.tw -$GREP "\binterational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterational\b/international/g" *.tw -$GREP "\binterchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangable\b/interchangeable/g" *.tw -$GREP "\binterchangably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangably\b/interchangeably/g" *.tw -$GREP "\bintercontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinential\b/intercontinental/g" *.tw -$GREP "\bintercontinetal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinetal\b/intercontinental/g" *.tw -$GREP "\binterelated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterelated\b/interrelated/g" *.tw -$GREP "\binterferance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterferance\b/interference/g" *.tw -$GREP "\binterfereing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterfereing\b/interfering/g" *.tw -$GREP "\bintergrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergrated\b/integrated/g" *.tw -$GREP "\bintergration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergration\b/integration/g" *.tw -$GREP "\binterm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterm\b/interim/g" *.tw -$GREP "\binternation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binternation\b/international/g" *.tw -$GREP "\binterpet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterpet\b/interpret/g" *.tw -$GREP "\binterrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrim\b/interim/g" *.tw -$GREP "\binterrugum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrugum\b/interregnum/g" *.tw -$GREP "\bintertaining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintertaining\b/entertaining/g" *.tw -$GREP "\binterupt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterupt\b/interrupt/g" *.tw -$GREP "\bintervines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintervines\b/intervenes/g" *.tw -$GREP "\bintevene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintevene\b/intervene/g" *.tw -$GREP "\bintial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintial\b/initial/g" *.tw -$GREP "\bintially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintially\b/initially/g" *.tw -$GREP "\bintrduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrduced\b/introduced/g" *.tw -$GREP "\bintrest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrest\b/interest/g" *.tw -$GREP "\bintrodued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrodued\b/introduced/g" *.tw -$GREP "\bintruduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruduced\b/introduced/g" *.tw -$GREP "\bintrument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrument\b/instrument/g" *.tw -$GREP "\bintrumental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrumental\b/instrumental/g" *.tw -$GREP "\bintruments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruments\b/instruments/g" *.tw -$GREP "\bintrusted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrusted\b/entrusted/g" *.tw -$GREP "\bintutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutive\b/intuitive/g" *.tw -$GREP "\bintutively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutively\b/intuitively/g" *.tw -$GREP "\binudstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binudstry\b/industry/g" *.tw -$GREP "\binventer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binventer\b/inventor/g" *.tw -$GREP "\binvertibrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvertibrates\b/invertebrates/g" *.tw -$GREP "\binvestingate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvestingate\b/investigate/g" *.tw -$GREP "\binvolvment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvolvment\b/involvement/g" *.tw -$GREP "\birelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birelevent\b/irrelevant/g" *.tw -$GREP "\biresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistable\b/irresistible/g" *.tw -$GREP "\biresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistably\b/irresistibly/g" *.tw -$GREP "\biresistible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistible\b/irresistible/g" *.tw -$GREP "\biresistibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistibly\b/irresistibly/g" *.tw -$GREP "\biritable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritable\b/irritable/g" *.tw -$GREP "\biritated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritated\b/irritated/g" *.tw -$GREP "\bironicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bironicly\b/ironically/g" *.tw -$GREP "\birregardless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birregardless\b/regardless/g" *.tw -$GREP "\birrelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birrelevent\b/irrelevant/g" *.tw -$GREP "\birreplacable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birreplacable\b/irreplaceable/g" *.tw -$GREP "\birresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistable\b/irresistible/g" *.tw -$GREP "\birresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistably\b/irresistibly/g" *.tw -$GREP "\bisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bisnt\b/isn't/g" *.tw -$GREP "\bIsraelies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIsraelies\b/Israelis/g" *.tw -$GREP "\bissueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bissueing\b/issuing/g" *.tw -$GREP "\bitnroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bitnroduced\b/introduced/g" *.tw -$GREP "\biunior\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biunior\b/junior/g" *.tw -$GREP "\biwll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwll\b/will/g" *.tw -$GREP "\biwth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwth\b/with/g" *.tw -$GREP "\bJanurary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanurary\b/January/g" *.tw -$GREP "\bJanuray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanuray\b/January/g" *.tw -$GREP "\bJapanes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJapanes\b/Japanese/g" *.tw -$GREP "\bjaques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjaques\b/jacques/g" *.tw -$GREP "\bjeapardy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjeapardy\b/jeopardy/g" *.tw -$GREP "\bjewllery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjewllery\b/jewellery/g" *.tw -$GREP "\bJohanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJohanine\b/Johannine/g" *.tw -$GREP "\bjorunal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjorunal\b/journal/g" *.tw -$GREP "\bJospeh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJospeh\b/Joseph/g" *.tw -$GREP "\bjouney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjouney\b/journey/g" *.tw -$GREP "\bjournied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournied\b/journeyed/g" *.tw -$GREP "\bjournies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournies\b/journeys/g" *.tw -$GREP "\bjstu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjstu\b/just/g" *.tw -$GREP "\bjsut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjsut\b/just/g" *.tw -$GREP "\bJuadaism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadaism\b/Judaism/g" *.tw -$GREP "\bJuadism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadism\b/Judaism/g" *.tw -$GREP "\bjudical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudical\b/judicial/g" *.tw -$GREP "\bjudisuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudisuary\b/judiciary/g" *.tw -$GREP "\bjuducial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuducial\b/judicial/g" *.tw -$GREP "\bjuristiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristiction\b/jurisdiction/g" *.tw -$GREP "\bjuristictions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristictions\b/jurisdictions/g" *.tw -$GREP "\bkindergarden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkindergarden\b/kindergarten/g" *.tw -$GREP "\bklenex\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bklenex\b/kleenex/g" *.tw -$GREP "\bknifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknifes\b/knives/g" *.tw -$GREP "\bknive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknive\b/knife/g" *.tw -$GREP "\bknowlege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlege\b/knowledge/g" *.tw -$GREP "\bknowlegeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlegeable\b/knowledgeable/g" *.tw -$GREP "\bknwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwo\b/know/g" *.tw -$GREP "\bknwos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwos\b/knows/g" *.tw -$GREP "\bkonw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonw\b/know/g" *.tw -$GREP "\bkonws\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonws\b/knows/g" *.tw -$GREP "\bkwno\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkwno\b/know/g" *.tw -$GREP "\blabratory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blabratory\b/laboratory/g" *.tw -$GREP "\blaguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguage\b/language/g" *.tw -$GREP "\blaguages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguages\b/languages/g" *.tw -$GREP "\blarg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarg\b/large/g" *.tw -$GREP "\blargst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blargst\b/largest/g" *.tw -$GREP "\blarrry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarrry\b/larry/g" *.tw -$GREP "\blastr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blastr\b/last/g" *.tw -$GREP "\blattitude\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blattitude\b/latitude/g" *.tw -$GREP "\blaunhed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaunhed\b/launched/g" *.tw -$GREP "\blavae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blavae\b/larvae/g" *.tw -$GREP "\blayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blayed\b/laid/g" *.tw -$GREP "\blazyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blazyness\b/laziness/g" *.tw -$GREP "\bleage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleage\b/league/g" *.tw -$GREP "\bleathal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleathal\b/lethal/g" *.tw -$GREP "\blefted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blefted\b/left/g" *.tw -$GREP "\blegitamate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitamate\b/legitimate/g" *.tw -$GREP "\blegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitmate\b/legitimate/g" *.tw -$GREP "\bleibnitz\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleibnitz\b/leibniz/g" *.tw -$GREP "\blenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blenght\b/length/g" *.tw -$GREP "\bleran\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleran\b/learn/g" *.tw -$GREP "\blerans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blerans\b/learns/g" *.tw -$GREP "\bleutenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleutenant\b/lieutenant/g" *.tw -$GREP "\blevetate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetate\b/levitate/g" *.tw -$GREP "\blevetated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetated\b/levitated/g" *.tw -$GREP "\blevetates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetates\b/levitates/g" *.tw -$GREP "\blevetating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetating\b/levitating/g" *.tw -$GREP "\blevle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevle\b/level/g" *.tw -$GREP "\bliasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasion\b/liaison/g" *.tw -$GREP "\bliason\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliason\b/liaison/g" *.tw -$GREP "\bliasons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasons\b/liaisons/g" *.tw -$GREP "\blibary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibary\b/library/g" *.tw -$GREP "\blibell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibell\b/libel/g" *.tw -$GREP "\blibguistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistic\b/linguistic/g" *.tw -$GREP "\blibguistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistics\b/linguistics/g" *.tw -$GREP "\blibitarianisn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibitarianisn\b/libertarianism/g" *.tw -$GREP "\blieing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieing\b/lying/g" *.tw -$GREP "\bliek\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliek\b/like/g" *.tw -$GREP "\bliekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliekd\b/liked/g" *.tw -$GREP "\bliesure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliesure\b/leisure/g" *.tw -$GREP "\blieuenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieuenant\b/lieutenant/g" *.tw -$GREP "\blieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieved\b/lived/g" *.tw -$GREP "\bliftime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliftime\b/lifetime/g" *.tw -$GREP "\blightyear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyear\b/light year/g" *.tw -$GREP "\blightyears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyears\b/light years/g" *.tw -$GREP "\blikelyhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blikelyhood\b/likelihood/g" *.tw -$GREP "\blinnaena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blinnaena\b/linnaean/g" *.tw -$GREP "\blippizaner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blippizaner\b/lipizzaner/g" *.tw -$GREP "\bliquify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliquify\b/liquefy/g" *.tw -$GREP "\blistners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blistners\b/listeners/g" *.tw -$GREP "\blitature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitature\b/literature/g" *.tw -$GREP "\bliteraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliteraly\b/literally/g" *.tw -$GREP "\bliterture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliterture\b/literature/g" *.tw -$GREP "\blittel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blittel\b/little/g" *.tw -$GREP "\blitterally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitterally\b/literally/g" *.tw -$GREP "\bliuke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliuke\b/like/g" *.tw -$GREP "\blivley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blivley\b/lively/g" *.tw -$GREP "\blmits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blmits\b/limits/g" *.tw -$GREP "\bloev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloev\b/love/g" *.tw -$GREP "\blonelyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonelyness\b/loneliness/g" *.tw -$GREP "\blongitudonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blongitudonal\b/longitudinal/g" *.tw -$GREP "\blonley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonley\b/lonely/g" *.tw -$GREP "\bloosing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloosing\b/losing/g" *.tw -$GREP "\blotharingen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blotharingen\b/lothringen/g" *.tw -$GREP "\blsat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blsat\b/last/g" *.tw -$GREP "\blukid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blukid\b/likud/g" *.tw -$GREP "\blveo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blveo\b/love/g" *.tw -$GREP "\blvoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blvoe\b/love/g" *.tw -$GREP "\bLybia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bLybia\b/Libya/g" *.tw -$GREP "\bmackeral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmackeral\b/mackerel/g" *.tw -$GREP "\bmagasine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagasine\b/magazine/g" *.tw -$GREP "\bmagizine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagizine\b/magazine/g" *.tw -$GREP "\bmagisine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagisine\b/magazine/g" *.tw -$GREP "\bmagincian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagincian\b/magician/g" *.tw -$GREP "\bmagnificient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagnificient\b/magnificent/g" *.tw -$GREP "\bmagolia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagolia\b/magnolia/g" *.tw -$GREP "\bmailny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmailny\b/mainly/g" *.tw -$GREP "\bmaintainance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainance\b/maintenance/g" *.tw -$GREP "\bmaintainence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainence\b/maintenance/g" *.tw -$GREP "\bmaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintance\b/maintenance/g" *.tw -$GREP "\bmaintenence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintenence\b/maintenance/g" *.tw -$GREP "\bmaintinaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintinaing\b/maintaining/g" *.tw -$GREP "\bmaintioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintioned\b/mentioned/g" *.tw -$GREP "\bmajoroty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmajoroty\b/majority/g" *.tw -$GREP "\bmakse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmakse\b/makes/g" *.tw -$GREP "\bMalcom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMalcom\b/Malcolm/g" *.tw -$GREP "\bmaltesian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaltesian\b/Maltese/g" *.tw -$GREP "\bmamal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamal\b/mammal/g" *.tw -$GREP "\bmamalian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamalian\b/mammalian/g" *.tw -$GREP "\bmanagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanagment\b/management/g" *.tw -$GREP "\bmaneouvre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvre\b/manoeuvre/g" *.tw -$GREP "\bmaneouvred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvred\b/manoeuvred/g" *.tw -$GREP "\bmaneouvres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvres\b/manoeuvres/g" *.tw -$GREP "\bmaneouvring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvring\b/manoeuvring/g" *.tw -$GREP "\bmanisfestations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanisfestations\b/manifestations/g" *.tw -$GREP "\bmanoeuverability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanoeuverability\b/maneuverability/g" *.tw -$GREP "\bmantained\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmantained\b/maintained/g" *.tw -$GREP "\bmanufacturedd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufacturedd\b/manufactured/g" *.tw -$GREP "\bmanufature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufature\b/manufacture/g" *.tw -$GREP "\bmanufatured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufatured\b/manufactured/g" *.tw -$GREP "\bmanufaturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufaturing\b/manufacturing/g" *.tw -$GREP "\bmanuver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanuver\b/maneuver/g" *.tw -$GREP "\bmariage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmariage\b/marriage/g" *.tw -$GREP "\bmarjority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarjority\b/majority/g" *.tw -$GREP "\bmarkes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarkes\b/marks/g" *.tw -$GREP "\bmarketting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarketting\b/marketing/g" *.tw -$GREP "\bmarmelade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarmelade\b/marmalade/g" *.tw -$GREP "\bmarrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrage\b/marriage/g" *.tw -$GREP "\bmarraige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarraige\b/marriage/g" *.tw -$GREP "\bmarrtyred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrtyred\b/martyred/g" *.tw -$GREP "\bmarryied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarryied\b/married/g" *.tw -$GREP "\bMassachussets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussets\b/Massachusetts/g" *.tw -$GREP "\bMassachussetts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussetts\b/Massachusetts/g" *.tw -$GREP "\bmassmedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmassmedia\b/mass media/g" *.tw -$GREP "\bmasterbation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmasterbation\b/masturbation/g" *.tw -$GREP "\bmataphysical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmataphysical\b/metaphysical/g" *.tw -$GREP "\bmateralists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmateralists\b/materialist/g" *.tw -$GREP "\bmathamatics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathamatics\b/mathematics/g" *.tw -$GREP "\bmathematican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematican\b/mathematician/g" *.tw -$GREP "\bmathematicas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematicas\b/mathematics/g" *.tw -$GREP "\bmatheticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmatheticians\b/mathematicians/g" *.tw -$GREP "\bmathmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatically\b/mathematically/g" *.tw -$GREP "\bmathmatician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatician\b/mathematician/g" *.tw -$GREP "\bmathmaticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmaticians\b/mathematicians/g" *.tw -$GREP "\bmccarthyst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmccarthyst\b/mccarthyist/g" *.tw -$GREP "\bmchanics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmchanics\b/mechanics/g" *.tw -$GREP "\bmeaninng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeaninng\b/meaning/g" *.tw -$GREP "\bmechandise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmechandise\b/merchandise/g" *.tw -$GREP "\bmedacine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedacine\b/medicine/g" *.tw -$GREP "\bmedeival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedeival\b/medieval/g" *.tw -$GREP "\bmedevial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedevial\b/medieval/g" *.tw -$GREP "\bmediciney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediciney\b/mediciny/g" *.tw -$GREP "\bmedievel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedievel\b/medieval/g" *.tw -$GREP "\bmediterainnean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediterainnean\b/mediterranean/g" *.tw -$GREP "\bMediteranean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMediteranean\b/Mediterranean/g" *.tw -$GREP "\bmeerkrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeerkrat\b/meerkat/g" *.tw -$GREP "\bmelieux\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmelieux\b/milieux/g" *.tw -$GREP "\bmembranaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmembranaphone\b/membranophone/g" *.tw -$GREP "\bmemeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmemeber\b/member/g" *.tw -$GREP "\bmenally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmenally\b/mentally/g" *.tw -$GREP "\bmercentile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmercentile\b/mercantile/g" *.tw -$GREP "\bmessanger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessanger\b/messenger/g" *.tw -$GREP "\bmessenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessenging\b/messaging/g" *.tw -$GREP "\bmetalic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalic\b/metallic/g" *.tw -$GREP "\bmetalurgic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgic\b/metallurgic/g" *.tw -$GREP "\bmetalurgical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgical\b/metallurgical/g" *.tw -$GREP "\bmetalurgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgy\b/metallurgy/g" *.tw -$GREP "\bmetamorphysis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetamorphysis\b/metamorphosis/g" *.tw -$GREP "\bmetaphoricial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetaphoricial\b/metaphorical/g" *.tw -$GREP "\bmeterologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterologist\b/meteorologist/g" *.tw -$GREP "\bmeterology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterology\b/meteorology/g" *.tw -$GREP "\bmethaphor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphor\b/metaphor/g" *.tw -$GREP "\bmethaphors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphors\b/metaphors/g" *.tw -$GREP "\bMichagan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMichagan\b/Michigan/g" *.tw -$GREP "\bmicoscopy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmicoscopy\b/microscopy/g" *.tw -$GREP "\bmidwifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmidwifes\b/midwives/g" *.tw -$GREP "\bmileau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileau\b/milieu/g" *.tw -$GREP "\bmilennia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennia\b/millennia/g" *.tw -$GREP "\bmilennium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennium\b/millennium/g" *.tw -$GREP "\bmileu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileu\b/milieu/g" *.tw -$GREP "\bmiliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliary\b/military/g" *.tw -$GREP "\bmiligram\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiligram\b/milligram/g" *.tw -$GREP "\bmilion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilion\b/million/g" *.tw -$GREP "\bmiliraty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliraty\b/military/g" *.tw -$GREP "\bmillenia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenia\b/millennia/g" *.tw -$GREP "\bmillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenial\b/millennial/g" *.tw -$GREP "\bmillenialism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenialism\b/millennialism/g" *.tw -$GREP "\bmillenium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenium\b/millennium/g" *.tw -$GREP "\bmillepede\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillepede\b/millipede/g" *.tw -$GREP "\bmillioniare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillioniare\b/millionaire/g" *.tw -$GREP "\bmillitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitant\b/militant/g" *.tw -$GREP "\bmillitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitary\b/military/g" *.tw -$GREP "\bmillon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillon\b/million/g" *.tw -$GREP "\bmiltary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiltary\b/military/g" *.tw -$GREP "\bminature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminature\b/miniature/g" *.tw -$GREP "\bminerial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminerial\b/mineral/g" *.tw -$GREP "\bministery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bministery\b/ministry/g" *.tw -$GREP "\bminsitry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminsitry\b/ministry/g" *.tw -$GREP "\bminstries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstries\b/ministries/g" *.tw -$GREP "\bminstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstry\b/ministry/g" *.tw -$GREP "\bminumum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminumum\b/minimum/g" *.tw -$GREP "\bmirrorred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmirrorred\b/mirrored/g" *.tw -$GREP "\bmiscelaneous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscelaneous\b/miscellaneous/g" *.tw -$GREP "\bmiscellanious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanious\b/miscellaneous/g" *.tw -$GREP "\bmiscellanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanous\b/miscellaneous/g" *.tw -$GREP "\bmischeivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischeivous\b/mischievous/g" *.tw -$GREP "\bmischevious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischevious\b/mischievous/g" *.tw -$GREP "\bmischievious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischievious\b/mischievous/g" *.tw -$GREP "\bmisdameanor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanor\b/misdemeanor/g" *.tw -$GREP "\bmisdameanors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanors\b/misdemeanors/g" *.tw -$GREP "\bmisdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenor\b/misdemeanor/g" *.tw -$GREP "\bmisdemenors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenors\b/misdemeanors/g" *.tw -$GREP "\bmisfourtunes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisfourtunes\b/misfortunes/g" *.tw -$GREP "\bmisile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisile\b/missile/g" *.tw -$GREP "\bMisouri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMisouri\b/Missouri/g" *.tw -$GREP "\bmispell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispell\b/misspell/g" *.tw -$GREP "\bmispelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelled\b/misspelled/g" *.tw -$GREP "\bmispelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelling\b/misspelling/g" *.tw -$GREP "\bmissen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissen\b/mizzen/g" *.tw -$GREP "\bMissisipi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisipi\b/Mississippi/g" *.tw -$GREP "\bMissisippi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisippi\b/Mississippi/g" *.tw -$GREP "\bmissle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissle\b/missile/g" *.tw -$GREP "\bmissonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissonary\b/missionary/g" *.tw -$GREP "\bmisterious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisterious\b/mysterious/g" *.tw -$GREP "\bmistery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmistery\b/mystery/g" *.tw -$GREP "\bmisteryous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisteryous\b/mysterious/g" *.tw -$GREP "\bmkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkae\b/make/g" *.tw -$GREP "\bmkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaes\b/makes/g" *.tw -$GREP "\bmkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaing\b/making/g" *.tw -$GREP "\bmkea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkea\b/make/g" *.tw -$GREP "\bmoderm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoderm\b/modem/g" *.tw -$GREP "\bmodle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmodle\b/model/g" *.tw -$GREP "\bmoent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoent\b/moment/g" *.tw -$GREP "\bmoeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoeny\b/money/g" *.tw -$GREP "\bmohammedans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmohammedans\b/muslims/g" *.tw -$GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/mohel/g" *.tw -$GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/soil/g" *.tw -$GREP "\bmoleclues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoleclues\b/molecules/g" *.tw -$GREP "\bmomento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmomento\b/memento/g" *.tw -$GREP "\bmonestaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonestaries\b/monasteries/g" *.tw -$GREP "\bmonickers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonickers\b/monikers/g" *.tw -$GREP "\bmonolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonolite\b/monolithic/g" *.tw -$GREP "\bmontains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontains\b/mountains/g" *.tw -$GREP "\bmontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontanous\b/mountainous/g" *.tw -$GREP "\bMontnana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMontnana\b/Montana/g" *.tw -$GREP "\bmonts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonts\b/months/g" *.tw -$GREP "\bmontypic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontypic\b/monotypic/g" *.tw -$GREP "\bmorgage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorgage\b/mortgage/g" *.tw -$GREP "\bMorisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorisette\b/Morissette/g" *.tw -$GREP "\bMorrisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorrisette\b/Morissette/g" *.tw -$GREP "\bmorroccan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroccan\b/moroccan/g" *.tw -$GREP "\bmorrocco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorrocco\b/morocco/g" *.tw -$GREP "\bmorroco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroco\b/morocco/g" *.tw -$GREP "\bmortage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmortage\b/mortgage/g" *.tw -$GREP "\bmosture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmosture\b/moisture/g" *.tw -$GREP "\bmotiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmotiviated\b/motivated/g" *.tw -$GREP "\bmounth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmounth\b/month/g" *.tw -$GREP "\bmovei\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovei\b/movie/g" *.tw -$GREP "\bmovment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovment\b/movement/g" *.tw -$GREP "\bmroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmroe\b/more/g" *.tw -$GREP "\bmucuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmucuous\b/mucous/g" *.tw -$GREP "\bmuder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuder\b/murder/g" *.tw -$GREP "\bmudering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmudering\b/murdering/g" *.tw -$GREP "\bmuhammadan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuhammadan\b/muslim/g" *.tw -$GREP "\bmulticultralism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmulticultralism\b/multiculturalism/g" *.tw -$GREP "\bmultipled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultipled\b/multiplied/g" *.tw -$GREP "\bmultiplers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultiplers\b/multipliers/g" *.tw -$GREP "\bmunbers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunbers\b/numbers/g" *.tw -$GREP "\bmuncipalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipalities\b/municipalities/g" *.tw -$GREP "\bmuncipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipality\b/municipality/g" *.tw -$GREP "\bmunnicipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunnicipality\b/municipality/g" *.tw -$GREP "\bmuscial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscial\b/musical/g" *.tw -$GREP "\bmuscician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscician\b/musician/g" *.tw -$GREP "\bmuscicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscicians\b/musicians/g" *.tw -$GREP "\bmutiliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmutiliated\b/mutilated/g" *.tw -$GREP "\bmyraid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmyraid\b/myriad/g" *.tw -$GREP "\bmysef\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysef\b/myself/g" *.tw -$GREP "\bmysogynist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogynist\b/misogynist/g" *.tw -$GREP "\bmysogyny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogyny\b/misogyny/g" *.tw -$GREP "\bmysterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysterous\b/mysterious/g" *.tw -$GREP "\bMythraic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMythraic\b/Mithraic/g" *.tw -$GREP "\bnaieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaieve\b/naive/g" *.tw -$GREP "\bNaploeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNaploeon\b/Napoleon/g" *.tw -$GREP "\bNapolean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapolean\b/Napoleon/g" *.tw -$GREP "\bNapoleonian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapoleonian\b/Napoleonic/g" *.tw -$GREP "\bnaturaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturaly\b/naturally/g" *.tw -$GREP "\bnaturely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturely\b/naturally/g" *.tw -$GREP "\bnaturual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturual\b/natural/g" *.tw -$GREP "\bnaturually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturually\b/naturally/g" *.tw -$GREP "\bNazereth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNazereth\b/Nazareth/g" *.tw -$GREP "\bneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesarily\b/necessarily/g" *.tw -$GREP "\bneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesary\b/necessary/g" *.tw -$GREP "\bneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessarily\b/necessarily/g" *.tw -$GREP "\bneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessary\b/necessary/g" *.tw -$GREP "\bneccessities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessities\b/necessities/g" *.tw -$GREP "\bnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesarily\b/necessarily/g" *.tw -$GREP "\bnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesary\b/necessary/g" *.tw -$GREP "\bnecessiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecessiate\b/necessitate/g" *.tw -$GREP "\bneglible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneglible\b/negligible/g" *.tw -$GREP "\bnegligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegligable\b/negligible/g" *.tw -$GREP "\bnegociate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociate\b/negotiate/g" *.tw -$GREP "\bnegociation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociation\b/negotiation/g" *.tw -$GREP "\bnegociations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociations\b/negotiations/g" *.tw -$GREP "\bnegotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegotation\b/negotiation/g" *.tw -$GREP "\bneigborhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigborhood\b/neighborhood/g" *.tw -$GREP "\bneigbourhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigbourhood\b/neighbourhood/g" *.tw -$GREP "\bneolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneolitic\b/neolithic/g" *.tw -$GREP "\bnessasarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessasarily\b/necessarily/g" *.tw -$GREP "\bnessecary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessecary\b/necessary/g" *.tw -$GREP "\bnestin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnestin\b/nesting/g" *.tw -$GREP "\bneverthless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneverthless\b/nevertheless/g" *.tw -$GREP "\bnewletters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnewletters\b/newsletters/g" *.tw -$GREP "\bnickle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnickle\b/nickel/g" *.tw -$GREP "\bnightfa;;\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightfa;;\b/nightfall/g" *.tw -$GREP "\bnightime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightime\b/nighttime/g" *.tw -$GREP "\bnineth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnineth\b/ninth/g" *.tw -$GREP "\bninteenth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninteenth\b/nineteenth/g" *.tw -$GREP "\bninties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninties\b/1990s/g" *.tw -$GREP "\bninty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninty\b/ninety/g" *.tw -$GREP "\bnkow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkow\b/know/g" *.tw -$GREP "\bnkwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkwo\b/know/g" *.tw -$GREP "\bnmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnmae\b/name/g" *.tw -$GREP "\bnoncombatents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoncombatents\b/noncombatants/g" *.tw -$GREP "\bnonsence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnonsence\b/nonsense/g" *.tw -$GREP "\bnontheless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnontheless\b/nonetheless/g" *.tw -$GREP "\bnoone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoone\b/no one/g" *.tw -$GREP "\bnorhern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorhern\b/northern/g" *.tw -$GREP "\bnorthen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthen\b/northern/g" *.tw -$GREP "\bnorthereastern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthereastern\b/northeastern/g" *.tw -$GREP "\bnotabley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotabley\b/notably/g" *.tw -$GREP "\bnoteable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteable\b/notable/g" *.tw -$GREP "\bnoteably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteably\b/notably/g" *.tw -$GREP "\bnoteriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteriety\b/notoriety/g" *.tw -$GREP "\bnoth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoth\b/north/g" *.tw -$GREP "\bnothern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnothern\b/northern/g" *.tw -$GREP "\bnoticable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticable\b/noticeable/g" *.tw -$GREP "\bnoticably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticably\b/noticeably/g" *.tw -$GREP "\bnoticeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticeing\b/noticing/g" *.tw -$GREP "\bnoticible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticible\b/noticeable/g" *.tw -$GREP "\bnotwhithstanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotwhithstanding\b/notwithstanding/g" *.tw -$GREP "\bnoveau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoveau\b/nouveau/g" *.tw -$GREP "\bNovermber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNovermber\b/November/g" *.tw -$GREP "\bnowdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowdays\b/nowadays/g" *.tw -$GREP "\bnowe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowe\b/now/g" *.tw -$GREP "\bnto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnto\b/not/g" *.tw -$GREP "\bnucular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnucular\b/nuclear/g" *.tw -$GREP "\bnuculear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuculear\b/nuclear/g" *.tw -$GREP "\bnuisanse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuisanse\b/nuisance/g" *.tw -$GREP "\bNullabour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNullabour\b/Nullarbor/g" *.tw -$GREP "\bnumberous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnumberous\b/numerous/g" *.tw -$GREP "\bNuremburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNuremburg\b/Nuremberg/g" *.tw -$GREP "\bnusance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnusance\b/nuisance/g" *.tw -$GREP "\bnutritent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritent\b/nutrient/g" *.tw -$GREP "\bnutritents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritents\b/nutrients/g" *.tw -$GREP "\bnuturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuturing\b/nurturing/g" *.tw -$GREP "\bobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediance\b/obedience/g" *.tw -$GREP "\bobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediant\b/obedient/g" *.tw -$GREP "\bobession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobession\b/obsession/g" *.tw -$GREP "\bobssessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobssessed\b/obsessed/g" *.tw -$GREP "\bobstacal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstacal\b/obstacle/g" *.tw -$GREP "\bobstancles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstancles\b/obstacles/g" *.tw -$GREP "\bobstruced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstruced\b/obstructed/g" *.tw -$GREP "\bocasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasion\b/occasion/g" *.tw -$GREP "\bocasional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasional\b/occasional/g" *.tw -$GREP "\bocasionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionally\b/occasionally/g" *.tw -$GREP "\bocasionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionaly\b/occasionally/g" *.tw -$GREP "\bocasioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasioned\b/occasioned/g" *.tw -$GREP "\bocasions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasions\b/occasions/g" *.tw -$GREP "\bocassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassion\b/occasion/g" *.tw -$GREP "\bocassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassional\b/occasional/g" *.tw -$GREP "\bocassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionally\b/occasionally/g" *.tw -$GREP "\bocassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionaly\b/occasionally/g" *.tw -$GREP "\bocassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassioned\b/occasioned/g" *.tw -$GREP "\bocassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassions\b/occasions/g" *.tw -$GREP "\boccaison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccaison\b/occasion/g" *.tw -$GREP "\boccassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassion\b/occasion/g" *.tw -$GREP "\boccassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassional\b/occasional/g" *.tw -$GREP "\boccassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionally\b/occasionally/g" *.tw -$GREP "\boccassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionaly\b/occasionally/g" *.tw -$GREP "\boccassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassioned\b/occasioned/g" *.tw -$GREP "\boccassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassions\b/occasions/g" *.tw -$GREP "\boccationally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccationally\b/occasionally/g" *.tw -$GREP "\boccour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccour\b/occur/g" *.tw -$GREP "\boccurance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurance\b/occurrence/g" *.tw -$GREP "\boccurances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurances\b/occurrences/g" *.tw -$GREP "\boccured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccured\b/occurred/g" *.tw -$GREP "\boccurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurence\b/occurrence/g" *.tw -$GREP "\boccurences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurences\b/occurrences/g" *.tw -$GREP "\boccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccuring\b/occurring/g" *.tw -$GREP "\boccurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurr\b/occur/g" *.tw -$GREP "\boccurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrance\b/occurrence/g" *.tw -$GREP "\boccurrances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrances\b/occurrences/g" *.tw -$GREP "\boctohedra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedra\b/octahedra/g" *.tw -$GREP "\boctohedral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedral\b/octahedral/g" *.tw -$GREP "\boctohedron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedron\b/octahedron/g" *.tw -$GREP "\bocuntries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntries\b/countries/g" *.tw -$GREP "\bocuntry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntry\b/country/g" *.tw -$GREP "\bocurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurr\b/occur/g" *.tw -$GREP "\bocurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrance\b/occurrence/g" *.tw -$GREP "\bocurred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurred\b/occurred/g" *.tw -$GREP "\bocurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrence\b/occurrence/g" *.tw -$GREP "\boffcers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcers\b/officers/g" *.tw -$GREP "\boffcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcially\b/officially/g" *.tw -$GREP "\boffereings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffereings\b/offerings/g" *.tw -$GREP "\boffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffical\b/official/g" *.tw -$GREP "\boffically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffically\b/officially/g" *.tw -$GREP "\bofficals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficals\b/officials/g" *.tw -$GREP "\bofficaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficaly\b/officially/g" *.tw -$GREP "\bofficialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficialy\b/officially/g" *.tw -$GREP "\boffred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffred\b/offered/g" *.tw -$GREP "\boftenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boftenly\b/often/g" *.tw -$GREP "\bomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomision\b/omission/g" *.tw -$GREP "\bomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomited\b/omitted/g" *.tw -$GREP "\bomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomiting\b/omitting/g" *.tw -$GREP "\bomlette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomlette\b/omelette/g" *.tw -$GREP "\bommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommision\b/omission/g" *.tw -$GREP "\bommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommited\b/omitted/g" *.tw -$GREP "\bommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommiting\b/omitting/g" *.tw -$GREP "\bommitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitted\b/omitted/g" *.tw -$GREP "\bommitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitting\b/omitting/g" *.tw -$GREP "\bomniverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverous\b/omnivorous/g" *.tw -$GREP "\bomniverously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverously\b/omnivorously/g" *.tw -$GREP "\bomre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomre\b/more/g" *.tw -$GREP "\bonyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bonyl\b/only/g" *.tw -$GREP "\bopeness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopeness\b/openness/g" *.tw -$GREP "\boponent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boponent\b/opponent/g" *.tw -$GREP "\boportunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boportunity\b/opportunity/g" *.tw -$GREP "\bopose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopose\b/oppose/g" *.tw -$GREP "\boposite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposite\b/opposite/g" *.tw -$GREP "\boposition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposition\b/opposition/g" *.tw -$GREP "\boppenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppenly\b/openly/g" *.tw -$GREP "\boppinion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppinion\b/opinion/g" *.tw -$GREP "\bopponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopponant\b/opponent/g" *.tw -$GREP "\boppononent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppononent\b/opponent/g" *.tw -$GREP "\boppositition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppositition\b/opposition/g" *.tw -$GREP "\boppossed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppossed\b/opposed/g" *.tw -$GREP "\bopprotunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopprotunity\b/opportunity/g" *.tw -$GREP "\bopression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopression\b/oppression/g" *.tw -$GREP "\bopressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopressive\b/oppressive/g" *.tw -$GREP "\bopthalmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmic\b/ophthalmic/g" *.tw -$GREP "\bopthalmologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmologist\b/ophthalmologist/g" *.tw -$GREP "\bopthalmology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmology\b/ophthalmology/g" *.tw -$GREP "\bopthamologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthamologist\b/ophthalmologist/g" *.tw -$GREP "\boptmizations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptmizations\b/optimizations/g" *.tw -$GREP "\boptomism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptomism\b/optimism/g" *.tw -$GREP "\borded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borded\b/ordered/g" *.tw -$GREP "\borganim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganim\b/organism/g" *.tw -$GREP "\borganistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganistion\b/organisation/g" *.tw -$GREP "\borganiztion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganiztion\b/organization/g" *.tw -$GREP "\borginal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginal\b/original/g" *.tw -$GREP "\borginally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginally\b/originally/g" *.tw -$GREP "\borginize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginize\b/organise/g" *.tw -$GREP "\boridinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boridinarily\b/ordinarily/g" *.tw -$GREP "\boriganaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriganaly\b/originally/g" *.tw -$GREP "\boriginaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginaly\b/originally/g" *.tw -$GREP "\boriginially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginially\b/originally/g" *.tw -$GREP "\boriginnally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginnally\b/originally/g" *.tw -$GREP "\borigional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borigional\b/original/g" *.tw -$GREP "\borignally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignally\b/originally/g" *.tw -$GREP "\borignially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignially\b/originally/g" *.tw -$GREP "\botehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\botehr\b/other/g" *.tw -$GREP "\boublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boublisher\b/publisher/g" *.tw -$GREP "\bouevre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bouevre\b/oeuvre/g" *.tw -$GREP "\boustanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boustanding\b/outstanding/g" *.tw -$GREP "\bovershaddowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bovershaddowed\b/overshadowed/g" *.tw -$GREP "\boverthere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverthere\b/over there/g" *.tw -$GREP "\boverwelming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwelming\b/overwhelming/g" *.tw -$GREP "\boverwheliming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwheliming\b/overwhelming/g" *.tw -$GREP "\bowrk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowrk\b/work/g" *.tw -$GREP "\bowudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowudl\b/would/g" *.tw -$GREP "\boxigen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boxigen\b/oxygen/g" *.tw -$GREP "\boximoron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boximoron\b/oxymoron/g" *.tw -$GREP "\bp0enis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bp0enis\b/penis/g" *.tw -$GREP "\bpaide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaide\b/paid/g" *.tw -$GREP "\bpaitience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaitience\b/patience/g" *.tw -$GREP "\bpaleolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaleolitic\b/paleolithic/g" *.tw -$GREP "\bpaliamentarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaliamentarian\b/parliamentarian/g" *.tw -$GREP "\bPalistian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistian\b/Palestinian/g" *.tw -$GREP "\bPalistinian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinian\b/Palestinian/g" *.tw -$GREP "\bPalistinians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinians\b/Palestinians/g" *.tw -$GREP "\bpallete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpallete\b/palette/g" *.tw -$GREP "\bpamflet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamflet\b/pamphlet/g" *.tw -$GREP "\bpamplet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamplet\b/pamphlet/g" *.tw -$GREP "\bpantomine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpantomine\b/pantomime/g" *.tw -$GREP "\bPapanicalou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPapanicalou\b/Papanicolaou/g" *.tw -$GREP "\bparalel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalel\b/parallel/g" *.tw -$GREP "\bparalell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalell\b/parallel/g" *.tw -$GREP "\bparalelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalelly\b/parallelly/g" *.tw -$GREP "\bparalely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalely\b/parallelly/g" *.tw -$GREP "\bparallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparallely\b/parallelly/g" *.tw -$GREP "\bparanthesis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparanthesis\b/parenthesis/g" *.tw -$GREP "\bparaphenalia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparaphenalia\b/paraphernalia/g" *.tw -$GREP "\bparellels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparellels\b/parallels/g" *.tw -$GREP "\bparisitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparisitic\b/parasitic/g" *.tw -$GREP "\bparituclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparituclar\b/particular/g" *.tw -$GREP "\bparliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparliment\b/parliament/g" *.tw -$GREP "\bparrakeets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrakeets\b/parakeets/g" *.tw -$GREP "\bparralel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparralel\b/parallel/g" *.tw -$GREP "\bparrallel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallel\b/parallel/g" *.tw -$GREP "\bparrallell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallell\b/parallel/g" *.tw -$GREP "\bparrallelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallelly\b/parallelly/g" *.tw -$GREP "\bparrallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallely\b/parallelly/g" *.tw -$GREP "\bpartialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpartialy\b/partially/g" *.tw -$GREP "\bparticually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticually\b/particularly/g" *.tw -$GREP "\bparticualr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticualr\b/particular/g" *.tw -$GREP "\bparticuarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticuarly\b/particularly/g" *.tw -$GREP "\bparticularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticularily\b/particularly/g" *.tw -$GREP "\bparticulary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticulary\b/particularly/g" *.tw -$GREP "\bpary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpary\b/party/g" *.tw -$GREP "\bpased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpased\b/passed/g" *.tw -$GREP "\bpasengers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasengers\b/passengers/g" *.tw -$GREP "\bpasserbys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasserbys\b/passersby/g" *.tw -$GREP "\bpasttime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasttime\b/pastime/g" *.tw -$GREP "\bpastural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpastural\b/pastoral/g" *.tw -$GREP "\bpaticular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaticular\b/particular/g" *.tw -$GREP "\bpattented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpattented\b/patented/g" *.tw -$GREP "\bpavillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpavillion\b/pavilion/g" *.tw -$GREP "\bpayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpayed\b/paid/g" *.tw -$GREP "\bpblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpblisher\b/publisher/g" *.tw -$GREP "\bpbulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpbulisher\b/publisher/g" *.tw -$GREP "\bpeacefuland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeacefuland\b/peaceful and/g" *.tw -$GREP "\bpeageant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeageant\b/pageant/g" *.tw -$GREP "\bpeaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaple\b/people/g" *.tw -$GREP "\bpeaples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaples\b/peoples/g" *.tw -$GREP "\bpeculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeculure\b/peculiar/g" *.tw -$GREP "\bpedestrain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpedestrain\b/pedestrian/g" *.tw -$GREP "\bpeformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeformed\b/performed/g" *.tw -$GREP "\bpeice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeice\b/piece/g" *.tw -$GREP "\bPeloponnes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPeloponnes\b/Peloponnesus/g" *.tw -$GREP "\bpenatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenatly\b/penalty/g" *.tw -$GREP "\bpenerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenerator\b/penetrator/g" *.tw -$GREP "\bpenisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisula\b/peninsula/g" *.tw -$GREP "\bpenisular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisular\b/peninsular/g" *.tw -$GREP "\bpenninsula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsula\b/peninsula/g" *.tw -$GREP "\bpenninsular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsular\b/peninsular/g" *.tw -$GREP "\bpennisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpennisula\b/peninsula/g" *.tw -$GREP "\bPennyslvania\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPennyslvania\b/Pennsylvania/g" *.tw -$GREP "\bpensle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensle\b/pencil/g" *.tw -$GREP "\bpensinula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensinula\b/peninsula/g" *.tw -$GREP "\bpeom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeom\b/poem/g" *.tw -$GREP "\bpeoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeoms\b/poems/g" *.tw -$GREP "\bpeopel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopel\b/people/g" *.tw -$GREP "\bpeopels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopels\b/peoples/g" *.tw -$GREP "\bpeotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeotry\b/poetry/g" *.tw -$GREP "\bperade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperade\b/parade/g" *.tw -$GREP "\bpercepted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercepted\b/perceived/g" *.tw -$GREP "\bpercieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieve\b/perceive/g" *.tw -$GREP "\bpercieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieved\b/perceived/g" *.tw -$GREP "\bperenially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperenially\b/perennially/g" *.tw -$GREP "\bperfomance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomance\b/performance/g" *.tw -$GREP "\bperfomers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomers\b/performers/g" *.tw -$GREP "\bperformence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperformence\b/performance/g" *.tw -$GREP "\bperhasp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhasp\b/perhaps/g" *.tw -$GREP "\bperheaps\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperheaps\b/perhaps/g" *.tw -$GREP "\bperhpas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhpas\b/perhaps/g" *.tw -$GREP "\bperipathetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperipathetic\b/peripatetic/g" *.tw -$GREP "\bperistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperistent\b/persistent/g" *.tw -$GREP "\bperjery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjery\b/perjury/g" *.tw -$GREP "\bperjorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjorative\b/pejorative/g" *.tw -$GREP "\bpermanant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermanant\b/permanent/g" *.tw -$GREP "\bpermenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenant\b/permanent/g" *.tw -$GREP "\bpermenantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenantly\b/permanently/g" *.tw -$GREP "\bpermissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermissable\b/permissible/g" *.tw -$GREP "\bperogative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperogative\b/prerogative/g" *.tw -$GREP "\bperonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperonal\b/personal/g" *.tw -$GREP "\bperpertrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpertrated\b/perpetrated/g" *.tw -$GREP "\bperosnality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperosnality\b/personality/g" *.tw -$GREP "\bperphas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperphas\b/perhaps/g" *.tw -$GREP "\bperpindicular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpindicular\b/perpendicular/g" *.tw -$GREP "\bpersan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersan\b/person/g" *.tw -$GREP "\bperseverence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperseverence\b/perseverance/g" *.tw -$GREP "\bpersistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistance\b/persistence/g" *.tw -$GREP "\bpersistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistant\b/persistent/g" *.tw -$GREP "\bpersonell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonell\b/personnel/g" *.tw -$GREP "\bpersonnell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonnell\b/personnel/g" *.tw -$GREP "\bpersuded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuded\b/persuaded/g" *.tw -$GREP "\bpersue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersue\b/pursue/g" *.tw -$GREP "\bpersued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersued\b/pursued/g" *.tw -$GREP "\bpersuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuing\b/pursuing/g" *.tw -$GREP "\bpersuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuit\b/pursuit/g" *.tw -$GREP "\bpersuits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuits\b/pursuits/g" *.tw -$GREP "\bpertubation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubation\b/perturbation/g" *.tw -$GREP "\bpertubations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubations\b/perturbations/g" *.tw -$GREP "\bpessiary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpessiary\b/pessary/g" *.tw -$GREP "\bpetetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpetetion\b/petition/g" *.tw -$GREP "\bPharoah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPharoah\b/Pharaoh/g" *.tw -$GREP "\bphenomenom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenom\b/phenomenon/g" *.tw -$GREP "\bphenomenonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonal\b/phenomenal/g" *.tw -$GREP "\bphenomenonly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonly\b/phenomenally/g" *.tw -$GREP "\bphenomonenon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonenon\b/phenomenon/g" *.tw -$GREP "\bphenomonon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonon\b/phenomenon/g" *.tw -$GREP "\bphenonmena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenonmena\b/phenomena/g" *.tw -$GREP "\bPhilipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhilipines\b/Philippines/g" *.tw -$GREP "\bphilisopher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisopher\b/philosopher/g" *.tw -$GREP "\bphilisophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophical\b/philosophical/g" *.tw -$GREP "\bphilisophy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophy\b/philosophy/g" *.tw -$GREP "\bPhillipine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipine\b/Philippine/g" *.tw -$GREP "\bPhillipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipines\b/Philippines/g" *.tw -$GREP "\bPhillippines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillippines\b/Philippines/g" *.tw -$GREP "\bphillosophically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphillosophically\b/philosophically/g" *.tw -$GREP "\bphilospher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilospher\b/philosopher/g" *.tw -$GREP "\bphilosphies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphies\b/philosophies/g" *.tw -$GREP "\bphilosphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphy\b/philosophy/g" *.tw -$GREP "\bPhonecian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhonecian\b/Phoenecian/g" *.tw -$GREP "\bphongraph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphongraph\b/phonograph/g" *.tw -$GREP "\bphylosophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphylosophical\b/philosophical/g" *.tw -$GREP "\bphysicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphysicaly\b/physically/g" *.tw -$GREP "\bpiblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpiblisher\b/publisher/g" *.tw -$GREP "\bpich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpich\b/pitch/g" *.tw -$GREP "\bpilgrimmage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmage\b/pilgrimage/g" *.tw -$GREP "\bpilgrimmages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmages\b/pilgrimages/g" *.tw -$GREP "\bpinapple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinapple\b/pineapple/g" *.tw -$GREP "\bpinnaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinnaple\b/pineapple/g" *.tw -$GREP "\bpinoneered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinoneered\b/pioneered/g" *.tw -$GREP "\bplagarism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplagarism\b/plagiarism/g" *.tw -$GREP "\bplanation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplanation\b/plantation/g" *.tw -$GREP "\bplaned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaned\b/planned/g" *.tw -$GREP "\bplantiff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplantiff\b/plaintiff/g" *.tw -$GREP "\bplateu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplateu\b/plateau/g" *.tw -$GREP "\bplausable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplausable\b/plausible/g" *.tw -$GREP "\bplayright\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplayright\b/playwright/g" *.tw -$GREP "\bplaywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrite\b/playwright/g" *.tw -$GREP "\bplaywrites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrites\b/playwrights/g" *.tw -$GREP "\bpleasent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpleasent\b/pleasant/g" *.tw -$GREP "\bplebicite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplebicite\b/plebiscite/g" *.tw -$GREP "\bplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplesant\b/pleasant/g" *.tw -$GREP "\bpoenis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoenis\b/penis/g" *.tw -$GREP "\bpoeoples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoeoples\b/peoples/g" *.tw -$GREP "\bpoety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoety\b/poetry/g" *.tw -$GREP "\bpoisin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoisin\b/poison/g" *.tw -$GREP "\bpolical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolical\b/political/g" *.tw -$GREP "\bpolinator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinator\b/pollinator/g" *.tw -$GREP "\bpolinators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinators\b/pollinators/g" *.tw -$GREP "\bpolitican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolitican\b/politician/g" *.tw -$GREP "\bpoliticans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoliticans\b/politicians/g" *.tw -$GREP "\bpoltical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoltical\b/political/g" *.tw -$GREP "\bpolute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolute\b/pollute/g" *.tw -$GREP "\bpoluted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluted\b/polluted/g" *.tw -$GREP "\bpolutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolutes\b/pollutes/g" *.tw -$GREP "\bpoluting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluting\b/polluting/g" *.tw -$GREP "\bpolution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolution\b/pollution/g" *.tw -$GREP "\bpolyphonyic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolyphonyic\b/polyphonic/g" *.tw -$GREP "\bpolysaccaride\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccaride\b/polysaccharide/g" *.tw -$GREP "\bpolysaccharid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccharid\b/polysaccharide/g" *.tw -$GREP "\bpomegranite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomegranite\b/pomegranate/g" *.tw -$GREP "\bpomotion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomotion\b/promotion/g" *.tw -$GREP "\bpoportional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoportional\b/proportional/g" *.tw -$GREP "\bpopoulation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopoulation\b/population/g" *.tw -$GREP "\bpopularaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopularaty\b/popularity/g" *.tw -$GREP "\bpopulare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopulare\b/popular/g" *.tw -$GREP "\bpopuler\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopuler\b/popular/g" *.tw -$GREP "\bporshan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshan\b/portion/g" *.tw -$GREP "\bporshon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshon\b/portion/g" *.tw -$GREP "\bportait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportait\b/portrait/g" *.tw -$GREP "\bportayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportayed\b/portrayed/g" *.tw -$GREP "\bportraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportraing\b/portraying/g" *.tw -$GREP "\bPortugese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPortugese\b/Portuguese/g" *.tw -$GREP "\bportuguease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportuguease\b/portuguese/g" *.tw -$GREP "\bportugues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportugues\b/Portuguese/g" *.tw -$GREP "\bposess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposess\b/possess/g" *.tw -$GREP "\bposessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessed\b/possessed/g" *.tw -$GREP "\bposesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposesses\b/possesses/g" *.tw -$GREP "\bposessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessing\b/possessing/g" *.tw -$GREP "\bposession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposession\b/possession/g" *.tw -$GREP "\bposessions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessions\b/possessions/g" *.tw -$GREP "\bposion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposion\b/poison/g" *.tw -$GREP "\bpossable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossable\b/possible/g" *.tw -$GREP "\bpossably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossably\b/possibly/g" *.tw -$GREP "\bposseses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposseses\b/possesses/g" *.tw -$GREP "\bpossesing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesing\b/possessing/g" *.tw -$GREP "\bpossesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesion\b/possession/g" *.tw -$GREP "\bpossessess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossessess\b/possesses/g" *.tw -$GREP "\bpossibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibile\b/possible/g" *.tw -$GREP "\bpossibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibilty\b/possibility/g" *.tw -$GREP "\bpossiblility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblility\b/possibility/g" *.tw -$GREP "\bpossiblilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblilty\b/possibility/g" *.tw -$GREP "\bpossiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblities\b/possibilities/g" *.tw -$GREP "\bpossiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblity\b/possibility/g" *.tw -$GREP "\bpossition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossition\b/position/g" *.tw -$GREP "\bPostdam\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPostdam\b/Potsdam/g" *.tw -$GREP "\bposthomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposthomous\b/posthumous/g" *.tw -$GREP "\bpostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostion\b/position/g" *.tw -$GREP "\bpostive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostive\b/positive/g" *.tw -$GREP "\bpotatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotatos\b/potatoes/g" *.tw -$GREP "\bpotrait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrait\b/portrait/g" *.tw -$GREP "\bpotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrayed\b/portrayed/g" *.tw -$GREP "\bpoulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoulations\b/populations/g" *.tw -$GREP "\bpoverful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoverful\b/powerful/g" *.tw -$GREP "\bpoweful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoweful\b/powerful/g" *.tw -$GREP "\bpowerfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpowerfull\b/powerful/g" *.tw -$GREP "\bppublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bppublisher\b/publisher/g" *.tw -$GREP "\bpractial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractial\b/practical/g" *.tw -$GREP "\bpractially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractially\b/practically/g" *.tw -$GREP "\bpracticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticaly\b/practically/g" *.tw -$GREP "\bpracticioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioner\b/practitioner/g" *.tw -$GREP "\bpracticioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioners\b/practitioners/g" *.tw -$GREP "\bpracticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticly\b/practically/g" *.tw -$GREP "\bpractioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioner\b/practitioner/g" *.tw -$GREP "\bpractioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioners\b/practitioners/g" *.tw -$GREP "\bprairy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprairy\b/prairie/g" *.tw -$GREP "\bprarie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprarie\b/prairie/g" *.tw -$GREP "\bpraries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpraries\b/prairies/g" *.tw -$GREP "\bpratice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpratice\b/practice/g" *.tw -$GREP "\bpreample\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreample\b/preamble/g" *.tw -$GREP "\bprecedessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecedessor\b/predecessor/g" *.tw -$GREP "\bpreceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceed\b/precede/g" *.tw -$GREP "\bpreceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeded\b/preceded/g" *.tw -$GREP "\bpreceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeding\b/preceding/g" *.tw -$GREP "\bpreceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeds\b/precedes/g" *.tw -$GREP "\bprecentage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecentage\b/percentage/g" *.tw -$GREP "\bprecice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecice\b/precise/g" *.tw -$GREP "\bprecisly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecisly\b/precisely/g" *.tw -$GREP "\bprecurser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecurser\b/precursor/g" *.tw -$GREP "\bpredecesors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredecesors\b/predecessors/g" *.tw -$GREP "\bpredicatble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicatble\b/predictable/g" *.tw -$GREP "\bpredicitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicitons\b/predictions/g" *.tw -$GREP "\bpredomiantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredomiantly\b/predominately/g" *.tw -$GREP "\bprefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefered\b/preferred/g" *.tw -$GREP "\bprefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefering\b/preferring/g" *.tw -$GREP "\bpreferrably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreferrably\b/preferably/g" *.tw -$GREP "\bpregancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpregancies\b/pregnancies/g" *.tw -$GREP "\bpreiod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreiod\b/period/g" *.tw -$GREP "\bpreliferation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreliferation\b/proliferation/g" *.tw -$GREP "\bpremeire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeire\b/premiere/g" *.tw -$GREP "\bpremeired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeired\b/premiered/g" *.tw -$GREP "\bpremillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremillenial\b/premillennial/g" *.tw -$GREP "\bpreminence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreminence\b/preeminence/g" *.tw -$GREP "\bpremission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremission\b/permission/g" *.tw -$GREP "\bPremonasterians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPremonasterians\b/Premonstratensians/g" *.tw -$GREP "\bpreocupation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreocupation\b/preoccupation/g" *.tw -$GREP "\bprepair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepair\b/prepare/g" *.tw -$GREP "\bprepartion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepartion\b/preparation/g" *.tw -$GREP "\bprepatory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepatory\b/preparatory/g" *.tw -$GREP "\bpreperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperation\b/preparation/g" *.tw -$GREP "\bpreperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperations\b/preparations/g" *.tw -$GREP "\bpreriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreriod\b/period/g" *.tw -$GREP "\bpresedential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresedential\b/presidential/g" *.tw -$GREP "\bpresense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresense\b/presence/g" *.tw -$GREP "\bpresidenital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidenital\b/presidential/g" *.tw -$GREP "\bpresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidental\b/presidential/g" *.tw -$GREP "\bpresitgious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresitgious\b/prestigious/g" *.tw -$GREP "\bprespective\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprespective\b/perspective/g" *.tw -$GREP "\bprestigeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigeous\b/prestigious/g" *.tw -$GREP "\bprestigous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigous\b/prestigious/g" *.tw -$GREP "\bpresumabely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumabely\b/presumably/g" *.tw -$GREP "\bpresumibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumibly\b/presumably/g" *.tw -$GREP "\bpretection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpretection\b/protection/g" *.tw -$GREP "\bprevelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevelant\b/prevalent/g" *.tw -$GREP "\bpreverse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreverse\b/perverse/g" *.tw -$GREP "\bprevivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevivous\b/previous/g" *.tw -$GREP "\bpricipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpricipal\b/principal/g" *.tw -$GREP "\bpriciple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriciple\b/principle/g" *.tw -$GREP "\bpriestood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriestood\b/priesthood/g" *.tw -$GREP "\bprimarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimarly\b/primarily/g" *.tw -$GREP "\bprimative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimative\b/primitive/g" *.tw -$GREP "\bprimatively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatively\b/primitively/g" *.tw -$GREP "\bprimatives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatives\b/primitives/g" *.tw -$GREP "\bprimordal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimordal\b/primordial/g" *.tw -$GREP "\bprinciplaity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciplaity\b/principality/g" *.tw -$GREP "\bprincipaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipaly\b/principality/g" *.tw -$GREP "\bprincipial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipial\b/principal/g" *.tw -$GREP "\bprinciply\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciply\b/principally/g" *.tw -$GREP "\bprinicipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinicipal\b/principal/g" *.tw -$GREP "\bprivalege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivalege\b/privilege/g" *.tw -$GREP "\bprivaleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivaleges\b/privileges/g" *.tw -$GREP "\bpriveledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveledges\b/privileges/g" *.tw -$GREP "\bprivelege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelege\b/privilege/g" *.tw -$GREP "\bpriveleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleged\b/privileged/g" *.tw -$GREP "\bpriveleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleges\b/privileges/g" *.tw -$GREP "\bprivelige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelige\b/privilege/g" *.tw -$GREP "\bpriveliged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliged\b/privileged/g" *.tw -$GREP "\bpriveliges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliges\b/privileges/g" *.tw -$GREP "\bprivelleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelleges\b/privileges/g" *.tw -$GREP "\bprivilage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivilage\b/privilege/g" *.tw -$GREP "\bpriviledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledge\b/privilege/g" *.tw -$GREP "\bpriviledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledges\b/privileges/g" *.tw -$GREP "\bprivledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivledge\b/privilege/g" *.tw -$GREP "\bprivte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivte\b/private/g" *.tw -$GREP "\bprobabilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobabilaty\b/probability/g" *.tw -$GREP "\bprobablistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablistic\b/probabilistic/g" *.tw -$GREP "\bprobablly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablly\b/probably/g" *.tw -$GREP "\bprobalibity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobalibity\b/probability/g" *.tw -$GREP "\bprobaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobaly\b/probably/g" *.tw -$GREP "\bprobelm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobelm\b/problem/g" *.tw -$GREP "\bproccess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccess\b/process/g" *.tw -$GREP "\bproccessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccessing\b/processing/g" *.tw -$GREP "\bprocedger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedger\b/procedure/g" *.tw -$GREP "\bprocedings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedings\b/proceedings/g" *.tw -$GREP "\bproceedure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproceedure\b/procedure/g" *.tw -$GREP "\bproces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproces\b/process/g" *.tw -$GREP "\bprocesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocesser\b/processor/g" *.tw -$GREP "\bproclaimation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaimation\b/proclamation/g" *.tw -$GREP "\bproclamed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclamed\b/proclaimed/g" *.tw -$GREP "\bproclaming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaming\b/proclaiming/g" *.tw -$GREP "\bproclomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclomation\b/proclamation/g" *.tw -$GREP "\bprofesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesor\b/professor/g" *.tw -$GREP "\bprofesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesser\b/professor/g" *.tw -$GREP "\bproffesed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesed\b/professed/g" *.tw -$GREP "\bproffesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesion\b/profession/g" *.tw -$GREP "\bproffesional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesional\b/professional/g" *.tw -$GREP "\bproffesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesor\b/professor/g" *.tw -$GREP "\bprofilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofilic\b/prolific/g" *.tw -$GREP "\bprogessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogessed\b/progressed/g" *.tw -$GREP "\bprogidy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogidy\b/prodigy/g" *.tw -$GREP "\bprogramable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogramable\b/programmable/g" *.tw -$GREP "\bprohabition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprohabition\b/prohibition/g" *.tw -$GREP "\bprologomena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprologomena\b/prolegomena/g" *.tw -$GREP "\bprominance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominance\b/prominence/g" *.tw -$GREP "\bprominant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominant\b/prominent/g" *.tw -$GREP "\bprominantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominantly\b/prominently/g" *.tw -$GREP "\bpromiscous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromiscous\b/promiscuous/g" *.tw -$GREP "\bpromotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromotted\b/promoted/g" *.tw -$GREP "\bpronomial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronomial\b/pronominal/g" *.tw -$GREP "\bpronouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronouced\b/pronounced/g" *.tw -$GREP "\bpronounched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounched\b/pronounced/g" *.tw -$GREP "\bpronounciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounciation\b/pronunciation/g" *.tw -$GREP "\bproove\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproove\b/prove/g" *.tw -$GREP "\bprooved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprooved\b/proved/g" *.tw -$GREP "\bprophacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprophacy\b/prophecy/g" *.tw -$GREP "\bpropietary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropietary\b/proprietary/g" *.tw -$GREP "\bpropmted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropmted\b/prompted/g" *.tw -$GREP "\bpropoganda\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropoganda\b/propaganda/g" *.tw -$GREP "\bpropogate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogate\b/propagate/g" *.tw -$GREP "\bpropogates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogates\b/propagates/g" *.tw -$GREP "\bpropogation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogation\b/propagation/g" *.tw -$GREP "\bpropostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropostion\b/proposition/g" *.tw -$GREP "\bpropotions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropotions\b/proportions/g" *.tw -$GREP "\bpropper\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropper\b/proper/g" *.tw -$GREP "\bpropperly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropperly\b/properly/g" *.tw -$GREP "\bproprietory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproprietory\b/proprietary/g" *.tw -$GREP "\bproseletyzing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproseletyzing\b/proselytizing/g" *.tw -$GREP "\bprotaganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganist\b/protagonist/g" *.tw -$GREP "\bprotaganists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganists\b/protagonists/g" *.tw -$GREP "\bprotocal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotocal\b/protocol/g" *.tw -$GREP "\bprotoganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotoganist\b/protagonist/g" *.tw -$GREP "\bprotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotrayed\b/portrayed/g" *.tw -$GREP "\bprotruberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberance\b/protuberance/g" *.tw -$GREP "\bprotruberances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberances\b/protuberances/g" *.tw -$GREP "\bprouncements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprouncements\b/pronouncements/g" *.tw -$GREP "\bprovacative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovacative\b/provocative/g" *.tw -$GREP "\bprovded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovded\b/provided/g" *.tw -$GREP "\bprovicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovicial\b/provincial/g" *.tw -$GREP "\bprovinicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovinicial\b/provincial/g" *.tw -$GREP "\bprovisiosn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisiosn\b/provision/g" *.tw -$GREP "\bprovisonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisonal\b/provisional/g" *.tw -$GREP "\bproximty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproximty\b/proximity/g" *.tw -$GREP "\bpseudononymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudononymous\b/pseudonymous/g" *.tw -$GREP "\bpseudonyn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudonyn\b/pseudonym/g" *.tw -$GREP "\bpsuedo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsuedo\b/pseudo/g" *.tw -$GREP "\bpsycology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsycology\b/psychology/g" *.tw -$GREP "\bpsyhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsyhic\b/psychic/g" *.tw -$GREP "\bpubilsher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubilsher\b/publisher/g" *.tw -$GREP "\bpubisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubisher\b/publisher/g" *.tw -$GREP "\bpubliaher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliaher\b/publisher/g" *.tw -$GREP "\bpublically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublically\b/publicly/g" *.tw -$GREP "\bpublicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicaly\b/publicly/g" *.tw -$GREP "\bpublicher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicher\b/publisher/g" *.tw -$GREP "\bpublihser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublihser\b/publisher/g" *.tw -$GREP "\bpublisehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisehr\b/publisher/g" *.tw -$GREP "\bpubliser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliser\b/publisher/g" *.tw -$GREP "\bpublisger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisger\b/publisher/g" *.tw -$GREP "\bpublisheed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisheed\b/published/g" *.tw -$GREP "\bpublisherr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisherr\b/publisher/g" *.tw -$GREP "\bpublishher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishher\b/publisher/g" *.tw -$GREP "\bpublishor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishor\b/publisher/g" *.tw -$GREP "\bpublishre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishre\b/publisher/g" *.tw -$GREP "\bpublissher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublissher\b/publisher/g" *.tw -$GREP "\bpubllisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubllisher\b/publisher/g" *.tw -$GREP "\bpublsiher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublsiher\b/publisher/g" *.tw -$GREP "\bpublusher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublusher\b/publisher/g" *.tw -$GREP "\bpuchasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuchasing\b/purchasing/g" *.tw -$GREP "\bPucini\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPucini\b/Puccini/g" *.tw -$GREP "\bPuertorrican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorrican\b/Puerto Rican/g" *.tw -$GREP "\bPuertorricans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorricans\b/Puerto Ricans/g" *.tw -$GREP "\bpulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpulisher\b/publisher/g" *.tw -$GREP "\bpumkin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpumkin\b/pumpkin/g" *.tw -$GREP "\bpuplisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuplisher\b/publisher/g" *.tw -$GREP "\bpuritannical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuritannical\b/puritanical/g" *.tw -$GREP "\bpurposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurposedly\b/purposely/g" *.tw -$GREP "\bpurpotedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurpotedly\b/purportedly/g" *.tw -$GREP "\bpursuade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuade\b/persuade/g" *.tw -$GREP "\bpursuaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuaded\b/persuaded/g" *.tw -$GREP "\bpursuades\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuades\b/persuades/g" *.tw -$GREP "\bpususading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpususading\b/persuading/g" *.tw -$GREP "\bputing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bputing\b/putting/g" *.tw -$GREP "\bpwoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpwoer\b/power/g" *.tw -$GREP "\bpyscic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpyscic\b/psychic/g" *.tw -$GREP "\bquantaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantaty\b/quantity/g" *.tw -$GREP "\bquantitiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantitiy\b/quantity/g" *.tw -$GREP "\bquarantaine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquarantaine\b/quarantine/g" *.tw -$GREP "\bQueenland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bQueenland\b/Queensland/g" *.tw -$GREP "\bquestonable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquestonable\b/questionable/g" *.tw -$GREP "\bquicklyu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquicklyu\b/quickly/g" *.tw -$GREP "\bquinessential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquinessential\b/quintessential/g" *.tw -$GREP "\bquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquitted\b/quit/g" *.tw -$GREP "\bquizes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquizes\b/quizzes/g" *.tw -$GREP "\brabinnical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brabinnical\b/rabbinical/g" *.tw -$GREP "\bracaus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bracaus\b/raucous/g" *.tw -$GREP "\bradiactive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradiactive\b/radioactive/g" *.tw -$GREP "\bradify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradify\b/ratify/g" *.tw -$GREP "\braelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\braelly\b/really/g" *.tw -$GREP "\brarified\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brarified\b/rarefied/g" *.tw -$GREP "\breaccurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breaccurring\b/recurring/g" *.tw -$GREP "\breacing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacing\b/reaching/g" *.tw -$GREP "\breacll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacll\b/recall/g" *.tw -$GREP "\breadmition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breadmition\b/readmission/g" *.tw -$GREP "\brealitvely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealitvely\b/relatively/g" *.tw -$GREP "\brealsitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealsitic\b/realistic/g" *.tw -$GREP "\brealtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealtions\b/relations/g" *.tw -$GREP "\brealy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealy\b/really/g" *.tw -$GREP "\brealyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealyl\b/really/g" *.tw -$GREP "\breasearch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breasearch\b/research/g" *.tw -$GREP "\brebiulding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebiulding\b/rebuilding/g" *.tw -$GREP "\brebllions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebllions\b/rebellions/g" *.tw -$GREP "\brebounce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebounce\b/rebound/g" *.tw -$GREP "\breccomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomend\b/recommend/g" *.tw -$GREP "\breccomendations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomendations\b/recommendations/g" *.tw -$GREP "\breccomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomended\b/recommended/g" *.tw -$GREP "\breccomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomending\b/recommending/g" *.tw -$GREP "\breccommend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommend\b/recommend/g" *.tw -$GREP "\breccommended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommended\b/recommended/g" *.tw -$GREP "\breccommending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommending\b/recommending/g" *.tw -$GREP "\breccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccuring\b/recurring/g" *.tw -$GREP "\breceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeded\b/receded/g" *.tw -$GREP "\breceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeding\b/receding/g" *.tw -$GREP "\breceivedfrom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceivedfrom\b/received from/g" *.tw -$GREP "\brecepient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepient\b/recipient/g" *.tw -$GREP "\brecepients\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepients\b/recipients/g" *.tw -$GREP "\breceving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceving\b/receiving/g" *.tw -$GREP "\brechargable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brechargable\b/rechargeable/g" *.tw -$GREP "\breched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breched\b/reached/g" *.tw -$GREP "\brecide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecide\b/reside/g" *.tw -$GREP "\brecided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecided\b/resided/g" *.tw -$GREP "\brecident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecident\b/resident/g" *.tw -$GREP "\brecidents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecidents\b/residents/g" *.tw -$GREP "\breciding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciding\b/residing/g" *.tw -$GREP "\breciepents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciepents\b/recipients/g" *.tw -$GREP "\breciept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciept\b/receipt/g" *.tw -$GREP "\brecieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieve\b/receive/g" *.tw -$GREP "\brecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieved\b/received/g" *.tw -$GREP "\breciever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciever\b/receiver/g" *.tw -$GREP "\brecievers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecievers\b/receivers/g" *.tw -$GREP "\brecieves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieves\b/receives/g" *.tw -$GREP "\brecieving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieving\b/receiving/g" *.tw -$GREP "\brecipiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiant\b/recipient/g" *.tw -$GREP "\brecipiants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiants\b/recipients/g" *.tw -$GREP "\brecived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecived\b/received/g" *.tw -$GREP "\brecivership\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecivership\b/receivership/g" *.tw -$GREP "\brecogise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogise\b/recognise/g" *.tw -$GREP "\brecogize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogize\b/recognize/g" *.tw -$GREP "\brecomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomend\b/recommend/g" *.tw -$GREP "\brecomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomended\b/recommended/g" *.tw -$GREP "\brecomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomending\b/recommending/g" *.tw -$GREP "\brecomends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomends\b/recommends/g" *.tw -$GREP "\brecommedations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecommedations\b/recommendations/g" *.tw -$GREP "\brecompence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecompence\b/recompense/g" *.tw -$GREP "\breconaissance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconaissance\b/reconnaissance/g" *.tw -$GREP "\breconcilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconcilation\b/reconciliation/g" *.tw -$GREP "\breconized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconized\b/recognized/g" *.tw -$GREP "\breconnaisance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaisance\b/reconnaissance/g" *.tw -$GREP "\breconnaissence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaissence\b/reconnaissance/g" *.tw -$GREP "\brecontructed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecontructed\b/reconstructed/g" *.tw -$GREP "\brecordproducer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecordproducer\b/record producer/g" *.tw -$GREP "\brecquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecquired\b/required/g" *.tw -$GREP "\brecrational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrational\b/recreational/g" *.tw -$GREP "\brecrod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrod\b/record/g" *.tw -$GREP "\brecuiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuiting\b/recruiting/g" *.tw -$GREP "\brecuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuring\b/recurring/g" *.tw -$GREP "\brecurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecurrance\b/recurrence/g" *.tw -$GREP "\brediculous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brediculous\b/ridiculous/g" *.tw -$GREP "\breedeming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breedeming\b/redeeming/g" *.tw -$GREP "\breenforced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breenforced\b/reinforced/g" *.tw -$GREP "\brefect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefect\b/reflect/g" *.tw -$GREP "\brefedendum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefedendum\b/referendum/g" *.tw -$GREP "\breferal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferal\b/referral/g" *.tw -$GREP "\breferece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferece\b/reference/g" *.tw -$GREP "\brefereces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereces\b/references/g" *.tw -$GREP "\brefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefered\b/referred/g" *.tw -$GREP "\breferemce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemce\b/reference/g" *.tw -$GREP "\breferemces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemces\b/references/g" *.tw -$GREP "\breferencs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferencs\b/references/g" *.tw -$GREP "\breferenece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferenece\b/reference/g" *.tw -$GREP "\brefereneced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneced\b/referenced/g" *.tw -$GREP "\brefereneces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneces\b/references/g" *.tw -$GREP "\breferiang\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferiang\b/referring/g" *.tw -$GREP "\brefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefering\b/referring/g" *.tw -$GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/reference/g" *.tw -$GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/references/g" *.tw -$GREP "\brefernces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernces\b/references/g" *.tw -$GREP "\breferrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrence\b/reference/g" *.tw -$GREP "\breferrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrences\b/references/g" *.tw -$GREP "\breferrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrs\b/refers/g" *.tw -$GREP "\breffered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffered\b/referred/g" *.tw -$GREP "\brefference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefference\b/reference/g" *.tw -$GREP "\breffering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffering\b/referring/g" *.tw -$GREP "\brefrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrence\b/reference/g" *.tw -$GREP "\brefrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrences\b/references/g" *.tw -$GREP "\brefrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrers\b/refers/g" *.tw -$GREP "\brefridgeration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgeration\b/refrigeration/g" *.tw -$GREP "\brefridgerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgerator\b/refrigerator/g" *.tw -$GREP "\brefromist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefromist\b/reformist/g" *.tw -$GREP "\brefusla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefusla\b/refusal/g" *.tw -$GREP "\bregardes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregardes\b/regards/g" *.tw -$GREP "\bregluar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregluar\b/regular/g" *.tw -$GREP "\breguarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breguarly\b/regularly/g" *.tw -$GREP "\bregulaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaion\b/regulation/g" *.tw -$GREP "\bregulaotrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaotrs\b/regulators/g" *.tw -$GREP "\bregularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregularily\b/regularly/g" *.tw -$GREP "\brehersal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brehersal\b/rehearsal/g" *.tw -$GREP "\breicarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breicarnation\b/reincarnation/g" *.tw -$GREP "\breigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breigining\b/reigning/g" *.tw -$GREP "\breknown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknown\b/renown/g" *.tw -$GREP "\breknowned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknowned\b/renowned/g" *.tw -$GREP "\brela\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brela\b/real/g" *.tw -$GREP "\brelaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelaly\b/really/g" *.tw -$GREP "\brelatiopnship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelatiopnship\b/relationship/g" *.tw -$GREP "\brelativly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelativly\b/relatively/g" *.tw -$GREP "\brelected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelected\b/reelected/g" *.tw -$GREP "\breleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleive\b/relieve/g" *.tw -$GREP "\breleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleived\b/relieved/g" *.tw -$GREP "\breleiver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleiver\b/reliever/g" *.tw -$GREP "\breleses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleses\b/releases/g" *.tw -$GREP "\brelevence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevence\b/relevance/g" *.tw -$GREP "\brelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevent\b/relevant/g" *.tw -$GREP "\breliablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breliablity\b/reliability/g" *.tw -$GREP "\brelient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelient\b/reliant/g" *.tw -$GREP "\breligeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligeous\b/religious/g" *.tw -$GREP "\breligous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligous\b/religious/g" *.tw -$GREP "\breligously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligously\b/religiously/g" *.tw -$GREP "\brelinqushment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelinqushment\b/relinquishment/g" *.tw -$GREP "\brelitavely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelitavely\b/relatively/g" *.tw -$GREP "\brelpacement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelpacement\b/replacement/g" *.tw -$GREP "\bremaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremaing\b/remaining/g" *.tw -$GREP "\bremeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremeber\b/remember/g" *.tw -$GREP "\brememberable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberable\b/memorable/g" *.tw -$GREP "\brememberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberance\b/remembrance/g" *.tw -$GREP "\bremembrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremembrence\b/remembrance/g" *.tw -$GREP "\bremenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenant\b/remnant/g" *.tw -$GREP "\bremenicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenicent\b/reminiscent/g" *.tw -$GREP "\breminent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminent\b/remnant/g" *.tw -$GREP "\breminescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminescent\b/reminiscent/g" *.tw -$GREP "\breminscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminscent\b/reminiscent/g" *.tw -$GREP "\breminsicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminsicent\b/reminiscent/g" *.tw -$GREP "\brendevous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendevous\b/rendezvous/g" *.tw -$GREP "\brendezous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendezous\b/rendezvous/g" *.tw -$GREP "\brenedered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenedered\b/rende/g" *.tw -$GREP "\brenewl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenewl\b/renewal/g" *.tw -$GREP "\brennovate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovate\b/renovate/g" *.tw -$GREP "\brennovated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovated\b/renovated/g" *.tw -$GREP "\brennovating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovating\b/renovating/g" *.tw -$GREP "\brennovation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovation\b/renovation/g" *.tw -$GREP "\brentors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brentors\b/renters/g" *.tw -$GREP "\breoccurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breoccurrence\b/recurrence/g" *.tw -$GREP "\breorganision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breorganision\b/reorganisation/g" *.tw -$GREP "\brepblic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblic\b/republic/g" *.tw -$GREP "\brepblican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblican\b/republican/g" *.tw -$GREP "\brepblicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblicans\b/republicans/g" *.tw -$GREP "\brepblics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblics\b/republics/g" *.tw -$GREP "\brepectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepectively\b/respectively/g" *.tw -$GREP "\brepeition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeition\b/repetition/g" *.tw -$GREP "\brepentence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentence\b/repentance/g" *.tw -$GREP "\brepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentent\b/repentant/g" *.tw -$GREP "\brepeteadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeteadly\b/repeatedly/g" *.tw -$GREP "\brepetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepetion\b/repetition/g" *.tw -$GREP "\brepid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepid\b/rapid/g" *.tw -$GREP "\breponse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponse\b/response/g" *.tw -$GREP "\breponsible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponsible\b/responsible/g" *.tw -$GREP "\breportadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breportadly\b/reportedly/g" *.tw -$GREP "\brepresantative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresantative\b/representative/g" *.tw -$GREP "\brepresentive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentive\b/representative/g" *.tw -$GREP "\brepresentives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentives\b/representatives/g" *.tw -$GREP "\breproducable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breproducable\b/reproducible/g" *.tw -$GREP "\breprtoire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breprtoire\b/repertoire/g" *.tw -$GREP "\brepsectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepsectively\b/respectively/g" *.tw -$GREP "\breptition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breptition\b/repetition/g" *.tw -$GREP "\brepubic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubic\b/republic/g" *.tw -$GREP "\brepubican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubican\b/republican/g" *.tw -$GREP "\brepubicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubicans\b/republicans/g" *.tw -$GREP "\brepubics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubics\b/republics/g" *.tw -$GREP "\brepubli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubli\b/republic/g" *.tw -$GREP "\brepublian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublian\b/republican/g" *.tw -$GREP "\brepublians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublians\b/republicans/g" *.tw -$GREP "\brepublis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublis\b/republics/g" *.tw -$GREP "\brepulic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulic\b/republic/g" *.tw -$GREP "\brepulican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulican\b/republican/g" *.tw -$GREP "\brepulicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulicans\b/republicans/g" *.tw -$GREP "\brepulics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulics\b/republics/g" *.tw -$GREP "\brequirment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequirment\b/requirement/g" *.tw -$GREP "\brequred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequred\b/required/g" *.tw -$GREP "\bresaurant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresaurant\b/restaurant/g" *.tw -$GREP "\bresembelance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembelance\b/resemblance/g" *.tw -$GREP "\bresembes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembes\b/resembles/g" *.tw -$GREP "\bresemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresemblence\b/resemblance/g" *.tw -$GREP "\bresevoir\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresevoir\b/reservoir/g" *.tw -$GREP "\bresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresidental\b/residential/g" *.tw -$GREP "\bresignement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresignement\b/resignment/g" *.tw -$GREP "\bresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistable\b/resistible/g" *.tw -$GREP "\bresistence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistence\b/resistance/g" *.tw -$GREP "\bresistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistent\b/resistant/g" *.tw -$GREP "\brespectivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brespectivly\b/respectively/g" *.tw -$GREP "\bresponce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponce\b/response/g" *.tw -$GREP "\bresponibilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponibilities\b/responsibilities/g" *.tw -$GREP "\bresponisble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponisble\b/responsible/g" *.tw -$GREP "\bresponnsibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponnsibilty\b/responsibility/g" *.tw -$GREP "\bresponsability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsability\b/responsibility/g" *.tw -$GREP "\bresponsibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibile\b/responsible/g" *.tw -$GREP "\bresponsibilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibilites\b/responsibilities/g" *.tw -$GREP "\bresponsiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblities\b/responsibilities/g" *.tw -$GREP "\bresponsiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblity\b/responsibility/g" *.tw -$GREP "\bressemblance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblance\b/resemblance/g" *.tw -$GREP "\bressemble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemble\b/resemble/g" *.tw -$GREP "\bressembled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembled\b/resembled/g" *.tw -$GREP "\bressemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblence\b/resemblance/g" *.tw -$GREP "\bressembling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembling\b/resembling/g" *.tw -$GREP "\bresssurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresssurecting\b/resurrecting/g" *.tw -$GREP "\bressurect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurect\b/resurrect/g" *.tw -$GREP "\bressurected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurected\b/resurrected/g" *.tw -$GREP "\bressurection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurection\b/resurrection/g" *.tw -$GREP "\bressurrection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurrection\b/resurrection/g" *.tw -$GREP "\brestarant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarant\b/restaurant/g" *.tw -$GREP "\brestarants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarants\b/restaurants/g" *.tw -$GREP "\brestaraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunt\b/restaurant/g" *.tw -$GREP "\brestaraunteur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteur\b/restaurateur/g" *.tw -$GREP "\brestaraunteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteurs\b/restaurateurs/g" *.tw -$GREP "\brestaraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunts\b/restaurants/g" *.tw -$GREP "\brestauranteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauranteurs\b/restaurateurs/g" *.tw -$GREP "\brestauration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauration\b/restoration/g" *.tw -$GREP "\brestauraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauraunt\b/restaurant/g" *.tw -$GREP "\bresteraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunt\b/restaurant/g" *.tw -$GREP "\bresteraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunts\b/restaurants/g" *.tw -$GREP "\bresticted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresticted\b/restricted/g" *.tw -$GREP "\bresturant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturant\b/restaurant/g" *.tw -$GREP "\bresturants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturants\b/restaurants/g" *.tw -$GREP "\bresturaunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunt\b/restaurant/g" *.tw -$GREP "\bresturaunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunts\b/restaurants/g" *.tw -$GREP "\bresurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresurecting\b/resurrecting/g" *.tw -$GREP "\bretalitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitated\b/retaliated/g" *.tw -$GREP "\bretalitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitation\b/retaliation/g" *.tw -$GREP "\bretreive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretreive\b/retrieve/g" *.tw -$GREP "\breturnd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breturnd\b/returned/g" *.tw -$GREP "\brevaluated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevaluated\b/reevaluated/g" *.tw -$GREP "\breveiw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveiw\b/review/g" *.tw -$GREP "\breveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveral\b/reversal/g" *.tw -$GREP "\breversable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breversable\b/reversible/g" *.tw -$GREP "\brevolutionar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevolutionar\b/revolutionary/g" *.tw -$GREP "\brewitten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewitten\b/rewritten/g" *.tw -$GREP "\brewriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewriet\b/rewrite/g" *.tw -$GREP "\brference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brference\b/reference/g" *.tw -$GREP "\brferences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brferences\b/references/g" *.tw -$GREP "\brhymme\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhymme\b/rhyme/g" *.tw -$GREP "\brhythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythem\b/rhythm/g" *.tw -$GREP "\brhythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythim\b/rhythm/g" *.tw -$GREP "\brhytmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhytmic\b/rhythmic/g" *.tw -$GREP "\brigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brigourous\b/rigorous/g" *.tw -$GREP "\brininging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brininging\b/ringing/g" *.tw -$GREP "\bRockerfeller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRockerfeller\b/Rockefeller/g" *.tw -$GREP "\brococco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brococco\b/rococo/g" *.tw -$GREP "\brocord\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brocord\b/record/g" *.tw -$GREP "\broomate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\broomate\b/roommate/g" *.tw -$GREP "\brougly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brougly\b/roughly/g" *.tw -$GREP "\brucuperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brucuperate\b/recuperate/g" *.tw -$GREP "\brudimentatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brudimentatry\b/rudimentary/g" *.tw -$GREP "\brulle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brulle\b/rule/g" *.tw -$GREP "\bruning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bruning\b/running/g" *.tw -$GREP "\brunnung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brunnung\b/running/g" *.tw -$GREP "\brussina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brussina\b/Russian/g" *.tw -$GREP "\bRussion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRussion\b/Russian/g" *.tw -$GREP "\brwite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brwite\b/write/g" *.tw -$GREP "\brythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythem\b/rhythm/g" *.tw -$GREP "\brythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythim\b/rhythm/g" *.tw -$GREP "\brythm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythm\b/rhythm/g" *.tw -$GREP "\brythmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythmic\b/rhythmic/g" *.tw -$GREP "\brythyms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythyms\b/rhythms/g" *.tw -$GREP "\bsacrafice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrafice\b/sacrifice/g" *.tw -$GREP "\bsacreligious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacreligious\b/sacrilegious/g" *.tw -$GREP "\bSacremento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSacremento\b/Sacramento/g" *.tw -$GREP "\bsacrifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrifical\b/sacrificial/g" *.tw -$GREP "\bsaftey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaftey\b/safety/g" *.tw -$GREP "\bsafty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsafty\b/safety/g" *.tw -$GREP "\bsalery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsalery\b/salary/g" *.tw -$GREP "\bsanctionning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsanctionning\b/sanctioning/g" *.tw -$GREP "\bsandwhich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsandwhich\b/sandwich/g" *.tw -$GREP "\bSanhedrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSanhedrim\b/Sanhedrin/g" *.tw -$GREP "\bsantioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsantioned\b/sanctioned/g" *.tw -$GREP "\bsargant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargant\b/sergeant/g" *.tw -$GREP "\bsargeant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargeant\b/sergeant/g" *.tw -$GREP "\bsatelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelite\b/satellite/g" *.tw -$GREP "\bsatelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelites\b/satellites/g" *.tw -$GREP "\bSaterday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterday\b/Saturday/g" *.tw -$GREP "\bSaterdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterdays\b/Saturdays/g" *.tw -$GREP "\bsatisfactority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatisfactority\b/satisfactorily/g" *.tw -$GREP "\bsatric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatric\b/satiric/g" *.tw -$GREP "\bsatrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrical\b/satirical/g" *.tw -$GREP "\bsatrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrically\b/satirically/g" *.tw -$GREP "\bsattelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelite\b/satellite/g" *.tw -$GREP "\bsattelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelites\b/satellites/g" *.tw -$GREP "\bsaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaught\b/sought/g" *.tw -$GREP "\bsaveing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaveing\b/saving/g" *.tw -$GREP "\bsaxaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaxaphone\b/saxophone/g" *.tw -$GREP "\bscaleable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaleable\b/scalable/g" *.tw -$GREP "\bscandanavia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscandanavia\b/Scandinavia/g" *.tw -$GREP "\bscaricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaricity\b/scarcity/g" *.tw -$GREP "\bscavanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscavanged\b/scavenged/g" *.tw -$GREP "\bschedual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bschedual\b/schedule/g" *.tw -$GREP "\bscholarhip\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscholarhip\b/scholarship/g" *.tw -$GREP "\bscientfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientfic\b/scientific/g" *.tw -$GREP "\bscientifc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientifc\b/scientific/g" *.tw -$GREP "\bscientis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientis\b/scientist/g" *.tw -$GREP "\bscince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscince\b/science/g" *.tw -$GREP "\bscinece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscinece\b/science/g" *.tw -$GREP "\bscirpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscirpt\b/script/g" *.tw -$GREP "\bscoll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscoll\b/scroll/g" *.tw -$GREP "\bscreenwrighter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscreenwrighter\b/screenwriter/g" *.tw -$GREP "\bscrutinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscrutinity\b/scrutiny/g" *.tw -$GREP "\bscuptures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscuptures\b/sculptures/g" *.tw -$GREP "\bseach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseach\b/search/g" *.tw -$GREP "\bseached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseached\b/searched/g" *.tw -$GREP "\bseaches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseaches\b/searches/g" *.tw -$GREP "\bsecratary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecratary\b/secretary/g" *.tw -$GREP "\bsecretery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecretery\b/secretary/g" *.tw -$GREP "\bsedereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsedereal\b/sidereal/g" *.tw -$GREP "\bseeked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseeked\b/sought/g" *.tw -$GREP "\bsegementation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsegementation\b/segmentation/g" *.tw -$GREP "\bseguoys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseguoys\b/segues/g" *.tw -$GREP "\bseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseige\b/siege/g" *.tw -$GREP "\bseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseing\b/seeing/g" *.tw -$GREP "\bseinor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseinor\b/senior/g" *.tw -$GREP "\bseldomly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseldomly\b/seldom/g" *.tw -$GREP "\bsenarios\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenarios\b/scenarios/g" *.tw -$GREP "\bsenstive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenstive\b/sensitive/g" *.tw -$GREP "\bsensure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsensure\b/censure/g" *.tw -$GREP "\bseperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperate\b/separate/g" *.tw -$GREP "\bseperated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperated\b/separated/g" *.tw -$GREP "\bseperately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperately\b/separately/g" *.tw -$GREP "\bseperates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperates\b/separates/g" *.tw -$GREP "\bseperating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperating\b/separating/g" *.tw -$GREP "\bseperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperation\b/separation/g" *.tw -$GREP "\bseperatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatism\b/separatism/g" *.tw -$GREP "\bseperatist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatist\b/separatist/g" *.tw -$GREP "\bsepina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsepina\b/subpoena/g" *.tw -$GREP "\bsergent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsergent\b/sergeant/g" *.tw -$GREP "\bsettelement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettelement\b/settlement/g" *.tw -$GREP "\bsettlment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettlment\b/settlement/g" *.tw -$GREP "\bsevereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevereal\b/several/g" *.tw -$GREP "\bseverley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverley\b/severely/g" *.tw -$GREP "\bseverly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverly\b/severely/g" *.tw -$GREP "\bsevice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevice\b/service/g" *.tw -$GREP "\bshadasloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadasloo\b/shadaloo/g" *.tw -$GREP "\bshaddow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshaddow\b/shadow/g" *.tw -$GREP "\bshadoloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadoloo\b/shadaloo/g" *.tw -$GREP "\bsheild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsheild\b/shield/g" *.tw -$GREP "\bsherif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsherif\b/sheriff/g" *.tw -$GREP "\bshineing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshineing\b/shining/g" *.tw -$GREP "\bshiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiped\b/shipped/g" *.tw -$GREP "\bshiping\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiping\b/shipping/g" *.tw -$GREP "\bshopkeeepers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshopkeeepers\b/shopkeepers/g" *.tw -$GREP "\bshorly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshorly\b/shortly/g" *.tw -$GREP "\bshortwhile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshortwhile\b/short while/g" *.tw -$GREP "\bshoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshoudl\b/should/g" *.tw -$GREP "\bshouldnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshouldnt\b/should not/g" *.tw -$GREP "\bshreak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshreak\b/shriek/g" *.tw -$GREP "\bshrinked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshrinked\b/shrunk/g" *.tw -$GREP "\bsicne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsicne\b/since/g" *.tw -$GREP "\bsideral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsideral\b/sidereal/g" *.tw -$GREP "\bsiezure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezure\b/seizure/g" *.tw -$GREP "\bsiezures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezures\b/seizures/g" *.tw -$GREP "\bsiginificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiginificant\b/significant/g" *.tw -$GREP "\bsignficant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficant\b/significant/g" *.tw -$GREP "\bsignficiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficiant\b/significant/g" *.tw -$GREP "\bsignfies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignfies\b/signifies/g" *.tw -$GREP "\bsignifantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifantly\b/significantly/g" *.tw -$GREP "\bsignificently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignificently\b/significantly/g" *.tw -$GREP "\bsignifigant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigant\b/significant/g" *.tw -$GREP "\bsignifigantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigantly\b/significantly/g" *.tw -$GREP "\bsignitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitories\b/signatories/g" *.tw -$GREP "\bsignitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitory\b/signatory/g" *.tw -$GREP "\bsimilarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimilarily\b/similarly/g" *.tw -$GREP "\bsimiliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliar\b/similar/g" *.tw -$GREP "\bsimiliarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarity\b/similarity/g" *.tw -$GREP "\bsimiliarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarly\b/similarly/g" *.tw -$GREP "\bsimmilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimmilar\b/similar/g" *.tw -$GREP "\bsimpley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimpley\b/simply/g" *.tw -$GREP "\bsimplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimplier\b/simpler/g" *.tw -$GREP "\bsimultanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanous\b/simultaneous/g" *.tw -$GREP "\bsimultanously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanously\b/simultaneously/g" *.tw -$GREP "\bsincerley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsincerley\b/sincerely/g" *.tw -$GREP "\bsingsog\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsingsog\b/singsong/g" *.tw -$GREP "\bSionist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionist\b/Zionist/g" *.tw -$GREP "\bSionists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionists\b/Zionists/g" *.tw -$GREP "\bSixtin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSixtin\b/Sistine/g" *.tw -$GREP "\bSkagerak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSkagerak\b/Skagerrak/g" *.tw -$GREP "\bskateing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bskateing\b/skating/g" *.tw -$GREP "\bslaugterhouses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslaugterhouses\b/slaughterhouses/g" *.tw -$GREP "\bslighly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslighly\b/slightly/g" *.tw -$GREP "\bslippy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslippy\b/slippery/g" *.tw -$GREP "\bslowy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslowy\b/slowly/g" *.tw -$GREP "\bsmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmae\b/same/g" *.tw -$GREP "\bsmealting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmealting\b/smelting/g" *.tw -$GREP "\bsmoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmoe\b/some/g" *.tw -$GREP "\bsneeks\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsneeks\b/sneaks/g" *.tw -$GREP "\bsnese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsnese\b/sneeze/g" *.tw -$GREP "\bsocalism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocalism\b/socialism/g" *.tw -$GREP "\bsocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocities\b/societies/g" *.tw -$GREP "\bsoem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoem\b/some/g" *.tw -$GREP "\bsofware\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsofware\b/software/g" *.tw -$GREP "\bsohw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsohw\b/show/g" *.tw -$GREP "\bsoilders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoilders\b/soldiers/g" *.tw -$GREP "\bsolatary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsolatary\b/solitary/g" *.tw -$GREP "\bsoley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoley\b/solely/g" *.tw -$GREP "\bsoliders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliders\b/soldiers/g" *.tw -$GREP "\bsoliliquy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliliquy\b/soliloquy/g" *.tw -$GREP "\bsoluable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoluable\b/soluble/g" *.tw -$GREP "\bsomene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomene\b/someone/g" *.tw -$GREP "\bsomtimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomtimes\b/sometimes/g" *.tw -$GREP "\bsomwhere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomwhere\b/somewhere/g" *.tw -$GREP "\bsophicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophicated\b/sophisticated/g" *.tw -$GREP "\bsophmore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophmore\b/sophomore/g" *.tw -$GREP "\bsorceror\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorceror\b/sorcerer/g" *.tw -$GREP "\bsorrounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorrounding\b/surrounding/g" *.tw -$GREP "\bsotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsotry\b/story/g" *.tw -$GREP "\bsoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudn\b/sound/g" *.tw -$GREP "\bsoudns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudns\b/sounds/g" *.tw -$GREP "\bsountrack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsountrack\b/soundtrack/g" *.tw -$GREP "\bsourth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourth\b/south/g" *.tw -$GREP "\bsourthern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourthern\b/southern/g" *.tw -$GREP "\bsouvenier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouvenier\b/souvenir/g" *.tw -$GREP "\bsouveniers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouveniers\b/souvenirs/g" *.tw -$GREP "\bsoveits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoveits\b/soviets/g" *.tw -$GREP "\bsovereignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsovereignity\b/sovereignty/g" *.tw -$GREP "\bsoverign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverign\b/sovereign/g" *.tw -$GREP "\bsoverignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignity\b/sovereignty/g" *.tw -$GREP "\bsoverignty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignty\b/sovereignty/g" *.tw -$GREP "\bspainish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspainish\b/Spanish/g" *.tw -$GREP "\bspeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeach\b/speech/g" *.tw -$GREP "\bspecfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecfic\b/specific/g" *.tw -$GREP "\bspecifiying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecifiying\b/specifying/g" *.tw -$GREP "\bspeciman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeciman\b/specimen/g" *.tw -$GREP "\bspectauclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectauclar\b/spectacular/g" *.tw -$GREP "\bspectaulars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectaulars\b/spectaculars/g" *.tw -$GREP "\bspectum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectum\b/spectrum/g" *.tw -$GREP "\bspeices\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeices\b/species/g" *.tw -$GREP "\bspendour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspendour\b/splendour/g" *.tw -$GREP "\bspermatozoan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspermatozoan\b/spermatozoon/g" *.tw -$GREP "\bspoace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoace\b/space/g" *.tw -$GREP "\bsponser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponser\b/sponsor/g" *.tw -$GREP "\bsponsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponsered\b/sponsored/g" *.tw -$GREP "\bspontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspontanous\b/spontaneous/g" *.tw -$GREP "\bsponzored\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponzored\b/sponsored/g" *.tw -$GREP "\bspoonfulls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoonfulls\b/spoonfuls/g" *.tw -$GREP "\bsppeches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsppeches\b/speeches/g" *.tw -$GREP "\bspreaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspreaded\b/spread/g" *.tw -$GREP "\bsprech\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsprech\b/speech/g" *.tw -$GREP "\bspred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspred\b/spread/g" *.tw -$GREP "\bspriritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspriritual\b/spiritual/g" *.tw -$GREP "\bspritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspritual\b/spiritual/g" *.tw -$GREP "\bsqaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsqaure\b/square/g" *.tw -$GREP "\bstablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstablility\b/stability/g" *.tw -$GREP "\bstainlees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstainlees\b/stainless/g" *.tw -$GREP "\bstaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstaion\b/station/g" *.tw -$GREP "\bstandars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstandars\b/standards/g" *.tw -$GREP "\bstange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstange\b/strange/g" *.tw -$GREP "\bstartegic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegic\b/strategic/g" *.tw -$GREP "\bstartegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegies\b/strategies/g" *.tw -$GREP "\bstartegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegy\b/strategy/g" *.tw -$GREP "\bstateman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstateman\b/statesman/g" *.tw -$GREP "\bstatememts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatememts\b/statements/g" *.tw -$GREP "\bstatment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatment\b/statement/g" *.tw -$GREP "\bsteriods\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsteriods\b/steroids/g" *.tw -$GREP "\bsterotypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsterotypes\b/stereotypes/g" *.tw -$GREP "\bstilus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstilus\b/stylus/g" *.tw -$GREP "\bstingent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstingent\b/stringent/g" *.tw -$GREP "\bstiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstiring\b/stirring/g" *.tw -$GREP "\bstirrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstirrs\b/stirs/g" *.tw -$GREP "\bstlye\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstlye\b/style/g" *.tw -$GREP "\bstomache\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstomache\b/stomach/g" *.tw -$GREP "\bstong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstong\b/strong/g" *.tw -$GREP "\bstopry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstopry\b/story/g" *.tw -$GREP "\bstoreis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoreis\b/stories/g" *.tw -$GREP "\bstorise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstorise\b/stories/g" *.tw -$GREP "\bstornegst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstornegst\b/strongest/g" *.tw -$GREP "\bstoyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoyr\b/story/g" *.tw -$GREP "\bstpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstpo\b/stop/g" *.tw -$GREP "\bstradegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegies\b/strategies/g" *.tw -$GREP "\bstradegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegy\b/strategy/g" *.tw -$GREP "\bstratagically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstratagically\b/strategically/g" *.tw -$GREP "\bstreemlining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstreemlining\b/streamlining/g" *.tw -$GREP "\bstregth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstregth\b/strength/g" *.tw -$GREP "\bstrenghen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghen\b/strengthen/g" *.tw -$GREP "\bstrenghened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghened\b/strengthened/g" *.tw -$GREP "\bstrenghening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghening\b/strengthening/g" *.tw -$GREP "\bstrenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenght\b/strength/g" *.tw -$GREP "\bstrenghten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghten\b/strengthen/g" *.tw -$GREP "\bstrenghtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtened\b/strengthened/g" *.tw -$GREP "\bstrenghtening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtening\b/strengthening/g" *.tw -$GREP "\bstrengtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrengtened\b/strengthened/g" *.tw -$GREP "\bstrenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenous\b/strenuous/g" *.tw -$GREP "\bstrictist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrictist\b/strictest/g" *.tw -$GREP "\bstrikely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrikely\b/strikingly/g" *.tw -$GREP "\bstrnad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrnad\b/strand/g" *.tw -$GREP "\bstructual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstructual\b/structural/g" *.tw -$GREP "\bstubborness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstubborness\b/stubbornness/g" *.tw -$GREP "\bstucture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstucture\b/structure/g" *.tw -$GREP "\bstuctured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuctured\b/structured/g" *.tw -$GREP "\bstuddy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuddy\b/study/g" *.tw -$GREP "\bstuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuding\b/studying/g" *.tw -$GREP "\bstuggling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuggling\b/struggling/g" *.tw -$GREP "\bsturcture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsturcture\b/structure/g" *.tw -$GREP "\bsubcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagories\b/subcategories/g" *.tw -$GREP "\bsubcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagory\b/subcategory/g" *.tw -$GREP "\bsubconsiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubconsiously\b/subconsciously/g" *.tw -$GREP "\bsubjudgation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubjudgation\b/subjugation/g" *.tw -$GREP "\bsubmachne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubmachne\b/submachine/g" *.tw -$GREP "\bsubpecies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubpecies\b/subspecies/g" *.tw -$GREP "\bsubsidary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsidary\b/subsidiary/g" *.tw -$GREP "\bsubsiduary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsiduary\b/subsidiary/g" *.tw -$GREP "\bsubsquent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquent\b/subsequent/g" *.tw -$GREP "\bsubsquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquently\b/subsequently/g" *.tw -$GREP "\bsubstace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstace\b/substance/g" *.tw -$GREP "\bsubstancial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstancial\b/substantial/g" *.tw -$GREP "\bsubstatial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstatial\b/substantial/g" *.tw -$GREP "\bsubstituded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstituded\b/substituted/g" *.tw -$GREP "\bsubstract\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstract\b/subtract/g" *.tw -$GREP "\bsubstracted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracted\b/subtracted/g" *.tw -$GREP "\bsubstracting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracting\b/subtracting/g" *.tw -$GREP "\bsubstraction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstraction\b/subtraction/g" *.tw -$GREP "\bsubstracts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracts\b/subtracts/g" *.tw -$GREP "\bsubtances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubtances\b/substances/g" *.tw -$GREP "\bsubterranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubterranian\b/subterranean/g" *.tw -$GREP "\bsuburburban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuburburban\b/suburban/g" *.tw -$GREP "\bsuccceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccceeded\b/succeeded/g" *.tw -$GREP "\bsucccesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucccesses\b/successes/g" *.tw -$GREP "\bsuccedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccedded\b/succeeded/g" *.tw -$GREP "\bsucceded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceded\b/succeeded/g" *.tw -$GREP "\bsucceds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceds\b/succeeds/g" *.tw -$GREP "\bsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesful\b/successful/g" *.tw -$GREP "\bsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfully\b/successfully/g" *.tw -$GREP "\bsuccesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfuly\b/successfully/g" *.tw -$GREP "\bsuccesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesion\b/succession/g" *.tw -$GREP "\bsuccesive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesive\b/successive/g" *.tw -$GREP "\bsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessfull\b/successful/g" *.tw -$GREP "\bsuccessully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessully\b/successfully/g" *.tw -$GREP "\bsuccsess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsess\b/success/g" *.tw -$GREP "\bsuccsessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsessfull\b/successful/g" *.tw -$GREP "\bsuceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceed\b/succeed/g" *.tw -$GREP "\bsuceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeded\b/succeeded/g" *.tw -$GREP "\bsuceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeding\b/succeeding/g" *.tw -$GREP "\bsuceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeds\b/succeeds/g" *.tw -$GREP "\bsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesful\b/successful/g" *.tw -$GREP "\bsucesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfully\b/successfully/g" *.tw -$GREP "\bsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfuly\b/successfully/g" *.tw -$GREP "\bsucesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesion\b/succession/g" *.tw -$GREP "\bsucess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucess\b/success/g" *.tw -$GREP "\bsucesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesses\b/successes/g" *.tw -$GREP "\bsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessful\b/successful/g" *.tw -$GREP "\bsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfull\b/successful/g" *.tw -$GREP "\bsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfully\b/successfully/g" *.tw -$GREP "\bsucessfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfuly\b/successfully/g" *.tw -$GREP "\bsucession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucession\b/succession/g" *.tw -$GREP "\bsucessive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessive\b/successive/g" *.tw -$GREP "\bsucessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessor\b/successor/g" *.tw -$GREP "\bsucessot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessot\b/successor/g" *.tw -$GREP "\bsucide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucide\b/suicide/g" *.tw -$GREP "\bsucidial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucidial\b/suicidal/g" *.tw -$GREP "\bsudent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudent\b/student/g" *.tw -$GREP "\bsudents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudents\b/students/g" *.tw -$GREP "\bsufferage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferage\b/suffrage/g" *.tw -$GREP "\bsufferred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferred\b/suffered/g" *.tw -$GREP "\bsufferring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferring\b/suffering/g" *.tw -$GREP "\bsufficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficent\b/sufficient/g" *.tw -$GREP "\bsufficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficently\b/sufficiently/g" *.tw -$GREP "\bsumary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsumary\b/summary/g" *.tw -$GREP "\bsunglases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsunglases\b/sunglasses/g" *.tw -$GREP "\bsuop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuop\b/soup/g" *.tw -$GREP "\bsuperceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperceeded\b/superseded/g" *.tw -$GREP "\bsuperintendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperintendant\b/superintendent/g" *.tw -$GREP "\bsuphisticated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuphisticated\b/sophisticated/g" *.tw -$GREP "\bsuplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuplimented\b/supplemented/g" *.tw -$GREP "\bsupose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupose\b/suppose/g" *.tw -$GREP "\bsuposed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposed\b/supposed/g" *.tw -$GREP "\bsuposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposedly\b/supposedly/g" *.tw -$GREP "\bsuposes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposes\b/supposes/g" *.tw -$GREP "\bsuposing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposing\b/supposing/g" *.tw -$GREP "\bsupplamented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupplamented\b/supplemented/g" *.tw -$GREP "\bsuppliementing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppliementing\b/supplementing/g" *.tw -$GREP "\bsuppoed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppoed\b/supposed/g" *.tw -$GREP "\bsupposingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupposingly\b/supposedly/g" *.tw -$GREP "\bsuppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppy\b/supply/g" *.tw -$GREP "\bsuprassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprassing\b/surpassing/g" *.tw -$GREP "\bsupress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupress\b/suppress/g" *.tw -$GREP "\bsupressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressed\b/suppressed/g" *.tw -$GREP "\bsupresses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupresses\b/suppresses/g" *.tw -$GREP "\bsupressing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressing\b/suppressing/g" *.tw -$GREP "\bsuprise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprise\b/surprise/g" *.tw -$GREP "\bsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprised\b/surprised/g" *.tw -$GREP "\bsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprising\b/surprising/g" *.tw -$GREP "\bsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprisingly\b/surprisingly/g" *.tw -$GREP "\bsuprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprize\b/surprise/g" *.tw -$GREP "\bsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprized\b/surprised/g" *.tw -$GREP "\bsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizing\b/surprising/g" *.tw -$GREP "\bsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizingly\b/surprisingly/g" *.tw -$GREP "\bsurfce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurfce\b/surface/g" *.tw -$GREP "\bsuround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuround\b/surround/g" *.tw -$GREP "\bsurounded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounded\b/surrounded/g" *.tw -$GREP "\bsurounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounding\b/surrounding/g" *.tw -$GREP "\bsuroundings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuroundings\b/surroundings/g" *.tw -$GREP "\bsurounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounds\b/surrounds/g" *.tw -$GREP "\bsurplanted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurplanted\b/supplanted/g" *.tw -$GREP "\bsurpress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpress\b/suppress/g" *.tw -$GREP "\bsurpressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpressed\b/suppressed/g" *.tw -$GREP "\bsurprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprize\b/surprise/g" *.tw -$GREP "\bsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprized\b/surprised/g" *.tw -$GREP "\bsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizing\b/surprising/g" *.tw -$GREP "\bsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizingly\b/surprisingly/g" *.tw -$GREP "\bsurrepetitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitious\b/surreptitious/g" *.tw -$GREP "\bsurrepetitiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitiously\b/surreptitiously/g" *.tw -$GREP "\bsurreptious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptious\b/surreptitious/g" *.tw -$GREP "\bsurreptiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptiously\b/surreptitiously/g" *.tw -$GREP "\bsurronded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurronded\b/surrounded/g" *.tw -$GREP "\bsurrouded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouded\b/surrounded/g" *.tw -$GREP "\bsurrouding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouding\b/surrounding/g" *.tw -$GREP "\bsurrundering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrundering\b/surrendering/g" *.tw -$GREP "\bsurveilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveilence\b/surveillance/g" *.tw -$GREP "\bsurveill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveill\b/surveil/g" *.tw -$GREP "\bsurveyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveyer\b/surveyor/g" *.tw -$GREP "\bsurviver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurviver\b/survivor/g" *.tw -$GREP "\bsurvivers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivers\b/survivors/g" *.tw -$GREP "\bsurvivied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivied\b/survived/g" *.tw -$GREP "\bsuseptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptable\b/susceptible/g" *.tw -$GREP "\bsuseptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptible\b/susceptible/g" *.tw -$GREP "\bsuspention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuspention\b/suspension/g" *.tw -$GREP "\bswaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaer\b/swear/g" *.tw -$GREP "\bswaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaers\b/swears/g" *.tw -$GREP "\bswepth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswepth\b/swept/g" *.tw -$GREP "\bswiming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswiming\b/swimming/g" *.tw -$GREP "\bsyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyas\b/says/g" *.tw -$GREP "\bsymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrical\b/symmetrical/g" *.tw -$GREP "\bsymetrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrically\b/symmetrically/g" *.tw -$GREP "\bsymetry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetry\b/symmetry/g" *.tw -$GREP "\bsymettric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymettric\b/symmetric/g" *.tw -$GREP "\bsymmetral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetral\b/symmetric/g" *.tw -$GREP "\bsymmetricaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetricaly\b/symmetrically/g" *.tw -$GREP "\bsynagouge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynagouge\b/synagogue/g" *.tw -$GREP "\bsyncronization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyncronization\b/synchronization/g" *.tw -$GREP "\bsynonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonomous\b/synonymous/g" *.tw -$GREP "\bsynonymns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonymns\b/synonyms/g" *.tw -$GREP "\bsynphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynphony\b/symphony/g" *.tw -$GREP "\bsyphyllis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyphyllis\b/syphilis/g" *.tw -$GREP "\bsypmtoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsypmtoms\b/symptoms/g" *.tw -$GREP "\bsyrap\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyrap\b/syrup/g" *.tw -$GREP "\bsysmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsysmatically\b/systematically/g" *.tw -$GREP "\bsytem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytem\b/system/g" *.tw -$GREP "\bsytle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytle\b/style/g" *.tw -$GREP "\btabacco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btabacco\b/tobacco/g" *.tw -$GREP "\btahn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btahn\b/than/g" *.tw -$GREP "\btaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaht\b/that/g" *.tw -$GREP "\btalekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btalekd\b/talked/g" *.tw -$GREP "\btargetted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetted\b/targeted/g" *.tw -$GREP "\btargetting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetting\b/targeting/g" *.tw -$GREP "\btast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btast\b/taste/g" *.tw -$GREP "\btath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btath\b/that/g" *.tw -$GREP "\btatoo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btatoo\b/tattoo/g" *.tw -$GREP "\btattooes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btattooes\b/tattoos/g" *.tw -$GREP "\btaxanomic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomic\b/taxonomic/g" *.tw -$GREP "\btaxanomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomy\b/taxonomy/g" *.tw -$GREP "\bteached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteached\b/taught/g" *.tw -$GREP "\btechician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechician\b/technician/g" *.tw -$GREP "\btechicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechicians\b/technicians/g" *.tw -$GREP "\btechiniques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechiniques\b/techniques/g" *.tw -$GREP "\btechnitian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnitian\b/technician/g" *.tw -$GREP "\btechnnology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnnology\b/technology/g" *.tw -$GREP "\btechnolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnolgy\b/technology/g" *.tw -$GREP "\bteh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteh\b/the/g" *.tw -$GREP "\btehy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btehy\b/they/g" *.tw -$GREP "\btelelevision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelelevision\b/television/g" *.tw -$GREP "\btelevsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelevsion\b/television/g" *.tw -$GREP "\btelphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelphony\b/telephony/g" *.tw -$GREP "\btemerature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemerature\b/temperature/g" *.tw -$GREP "\btempalte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempalte\b/template/g" *.tw -$GREP "\btempaltes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempaltes\b/templates/g" *.tw -$GREP "\btemparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemparate\b/temperate/g" *.tw -$GREP "\btemperarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperarily\b/temporarily/g" *.tw -$GREP "\btemperment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperment\b/temperament/g" *.tw -$GREP "\btempertaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempertaure\b/temperature/g" *.tw -$GREP "\btemperture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperture\b/temperature/g" *.tw -$GREP "\btemprary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemprary\b/temporary/g" *.tw -$GREP "\btenacle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacle\b/tentacle/g" *.tw -$GREP "\btenacles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacles\b/tentacles/g" *.tw -$GREP "\btendacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendacy\b/tendency/g" *.tw -$GREP "\btendancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancies\b/tendencies/g" *.tw -$GREP "\btendancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancy\b/tendency/g" *.tw -$GREP "\btennisplayer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btennisplayer\b/tennis player/g" *.tw -$GREP "\btepmorarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btepmorarily\b/temporarily/g" *.tw -$GREP "\bterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterrestial\b/terrestrial/g" *.tw -$GREP "\bterriories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriories\b/territories/g" *.tw -$GREP "\bterriory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriory\b/territory/g" *.tw -$GREP "\bterritorist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritorist\b/terrorist/g" *.tw -$GREP "\bterritoy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritoy\b/territory/g" *.tw -$GREP "\bterroist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterroist\b/terrorist/g" *.tw -$GREP "\btesticlular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btesticlular\b/testicular/g" *.tw -$GREP "\btestomony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btestomony\b/testimony/g" *.tw -$GREP "\btghe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btghe\b/the/g" *.tw -$GREP "\btheather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheather\b/theater/g" *.tw -$GREP "\btheese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheese\b/these/g" *.tw -$GREP "\btheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheif\b/thief/g" *.tw -$GREP "\btheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheives\b/thieves/g" *.tw -$GREP "\bthemselfs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemselfs\b/themselves/g" *.tw -$GREP "\bthemslves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemslves\b/themselves/g" *.tw -$GREP "\btherafter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherafter\b/thereafter/g" *.tw -$GREP "\btherby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherby\b/thereby/g" *.tw -$GREP "\btheri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheri\b/their/g" *.tw -$GREP "\btheyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheyre\b/they're/g" *.tw -$GREP "\bthgat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthgat\b/that/g" *.tw -$GREP "\bthge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthge\b/the/g" *.tw -$GREP "\bthier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthier\b/their/g" *.tw -$GREP "\bthign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthign\b/thing/g" *.tw -$GREP "\bthigns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigns\b/things/g" *.tw -$GREP "\bthigsn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigsn\b/things/g" *.tw -$GREP "\bthikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikn\b/think/g" *.tw -$GREP "\bthikns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikns\b/thinks/g" *.tw -$GREP "\bthiunk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthiunk\b/think/g" *.tw -$GREP "\bthn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthn\b/then/g" *.tw -$GREP "\bthna\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthna\b/than/g" *.tw -$GREP "\bthne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthne\b/then/g" *.tw -$GREP "\bthnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnig\b/thing/g" *.tw -$GREP "\bthnigs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnigs\b/things/g" *.tw -$GREP "\bthoughout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthoughout\b/throughout/g" *.tw -$GREP "\bthreatend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatend\b/threatened/g" *.tw -$GREP "\bthreatning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatning\b/threatening/g" *.tw -$GREP "\bthreee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreee\b/three/g" *.tw -$GREP "\bthreshhold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreshhold\b/threshold/g" *.tw -$GREP "\bthrid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrid\b/third/g" *.tw -$GREP "\bthrorough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrorough\b/thorough/g" *.tw -$GREP "\bthroughly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthroughly\b/thoroughly/g" *.tw -$GREP "\bthrougout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrougout\b/throughout/g" *.tw -$GREP "\bthru\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthru\b/through/g" *.tw -$GREP "\bthsi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsi\b/this/g" *.tw -$GREP "\bthsoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsoe\b/those/g" *.tw -$GREP "\bthta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthta\b/that/g" *.tw -$GREP "\bthyat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthyat\b/that/g" *.tw -$GREP "\btihkn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihkn\b/think/g" *.tw -$GREP "\btihs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihs\b/this/g" *.tw -$GREP "\btimne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btimne\b/time/g" *.tw -$GREP "\btje\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btje\b/the/g" *.tw -$GREP "\btjhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjhe\b/the/g" *.tw -$GREP "\btjpanishad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjpanishad\b/upanishad/g" *.tw -$GREP "\btkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkae\b/take/g" *.tw -$GREP "\btkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaes\b/takes/g" *.tw -$GREP "\btkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaing\b/taking/g" *.tw -$GREP "\btlaking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btlaking\b/talking/g" *.tw -$GREP "\btobbaco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btobbaco\b/tobacco/g" *.tw -$GREP "\btodays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodays\b/today's/g" *.tw -$GREP "\btodya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodya\b/today/g" *.tw -$GREP "\btoghether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoghether\b/together/g" *.tw -$GREP "\btoke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoke\b/took/g" *.tw -$GREP "\btolerence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btolerence\b/tolerance/g" *.tw -$GREP "\bTolkein\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTolkein\b/Tolkien/g" *.tw -$GREP "\btomatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btomatos\b/tomatoes/g" *.tw -$GREP "\btommorow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorow\b/tomorrow/g" *.tw -$GREP "\btommorrow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorrow\b/tomorrow/g" *.tw -$GREP "\btongiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btongiht\b/tonight/g" *.tw -$GREP "\btoriodal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoriodal\b/toroidal/g" *.tw -$GREP "\btormenters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btormenters\b/tormentors/g" *.tw -$GREP "\btornadoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btornadoe\b/tornado/g" *.tw -$GREP "\btorpeados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpeados\b/torpedoes/g" *.tw -$GREP "\btorpedos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpedos\b/torpedoes/g" *.tw -$GREP "\btortise \b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btortise \b/tortoise/g" *.tw -$GREP "\btothe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btothe\b/to the/g" *.tw -$GREP "\btoubles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoubles\b/troubles/g" *.tw -$GREP "\btounge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btounge\b/tongue/g" *.tw -$GREP "\btowords\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowords\b/towards/g" *.tw -$GREP "\btowrad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowrad\b/toward/g" *.tw -$GREP "\btradionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradionally\b/traditionally/g" *.tw -$GREP "\btraditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionaly\b/traditionally/g" *.tw -$GREP "\btraditionnal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionnal\b/traditional/g" *.tw -$GREP "\btraditition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditition\b/tradition/g" *.tw -$GREP "\btradtionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradtionally\b/traditionally/g" *.tw -$GREP "\btrafficed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficed\b/trafficked/g" *.tw -$GREP "\btrafficing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficing\b/trafficking/g" *.tw -$GREP "\btrafic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafic\b/traffic/g" *.tw -$GREP "\btrancendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancendent\b/transcendent/g" *.tw -$GREP "\btrancending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancending\b/transcending/g" *.tw -$GREP "\btranform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranform\b/transform/g" *.tw -$GREP "\btranformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranformed\b/transformed/g" *.tw -$GREP "\btranscendance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendance\b/transcendence/g" *.tw -$GREP "\btranscendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendant\b/transcendent/g" *.tw -$GREP "\btranscendentational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendentational\b/transcendental/g" *.tw -$GREP "\btransending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransending\b/transcending/g" *.tw -$GREP "\btransesxuals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransesxuals\b/transsexuals/g" *.tw -$GREP "\btransfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfered\b/transferred/g" *.tw -$GREP "\btransfering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfering\b/transferring/g" *.tw -$GREP "\btransformaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransformaton\b/transformation/g" *.tw -$GREP "\btransistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransistion\b/transition/g" *.tw -$GREP "\btranslater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslater\b/translator/g" *.tw -$GREP "\btranslaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslaters\b/translators/g" *.tw -$GREP "\btransmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransmissable\b/transmissible/g" *.tw -$GREP "\btransporation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransporation\b/transportation/g" *.tw -$GREP "\btremelo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelo\b/tremolo/g" *.tw -$GREP "\btremelos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelos\b/tremolos/g" *.tw -$GREP "\btriguered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriguered\b/triggered/g" *.tw -$GREP "\btriology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriology\b/trilogy/g" *.tw -$GREP "\btroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroling\b/trolling/g" *.tw -$GREP "\btroup\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroup\b/troupe/g" *.tw -$GREP "\btruely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btruely\b/truly/g" *.tw -$GREP "\btrustworthyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrustworthyness\b/trustworthiness/g" *.tw -$GREP "\bTuscon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTuscon\b/Tucson/g" *.tw -$GREP "\btust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btust\b/trust/g" *.tw -$GREP "\btwelth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwelth\b/twelfth/g" *.tw -$GREP "\btwon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwon\b/town/g" *.tw -$GREP "\btwpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwpo\b/two/g" *.tw -$GREP "\btyhat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhat\b/that/g" *.tw -$GREP "\btyhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhe\b/they/g" *.tw -$GREP "\btypcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypcial\b/typical/g" *.tw -$GREP "\btypicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypicaly\b/typically/g" *.tw -$GREP "\btyranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyranies\b/tyrannies/g" *.tw -$GREP "\btyrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrany\b/tyranny/g" *.tw -$GREP "\btyrranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrranies\b/tyrannies/g" *.tw -$GREP "\btyrrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrrany\b/tyranny/g" *.tw -$GREP "\bubiquitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bubiquitious\b/ubiquitous/g" *.tw -$GREP "\bublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bublisher\b/publisher/g" *.tw -$GREP "\buise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buise\b/use/g" *.tw -$GREP "\bUkranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUkranian\b/Ukrainian/g" *.tw -$GREP "\bultimely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bultimely\b/ultimately/g" *.tw -$GREP "\bunacompanied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunacompanied\b/unaccompanied/g" *.tw -$GREP "\bunahppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunahppy\b/unhappy/g" *.tw -$GREP "\bunanymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunanymous\b/unanimous/g" *.tw -$GREP "\bunathorised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunathorised\b/unauthorised/g" *.tw -$GREP "\bunavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunavailible\b/unavailable/g" *.tw -$GREP "\bunballance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunballance\b/unbalance/g" *.tw -$GREP "\bunbeknowst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeknowst\b/unbeknownst/g" *.tw -$GREP "\bunbeleivable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeleivable\b/unbelievable/g" *.tw -$GREP "\buncertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncertainity\b/uncertainty/g" *.tw -$GREP "\bunchallengable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchallengable\b/unchallengeable/g" *.tw -$GREP "\bunchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchangable\b/unchangeable/g" *.tw -$GREP "\buncompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncompetive\b/uncompetitive/g" *.tw -$GREP "\bunconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconcious\b/unconscious/g" *.tw -$GREP "\bunconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconciousness\b/unconsciousness/g" *.tw -$GREP "\bunconfortability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconfortability\b/discomfort/g" *.tw -$GREP "\buncontitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncontitutional\b/unconstitutional/g" *.tw -$GREP "\bunconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconvential\b/unconventional/g" *.tw -$GREP "\bundecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundecideable\b/undecidable/g" *.tw -$GREP "\bunderstoon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunderstoon\b/understood/g" *.tw -$GREP "\bundesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundesireable\b/undesirable/g" *.tw -$GREP "\bundetecable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundetecable\b/undetectable/g" *.tw -$GREP "\bundoubtely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundoubtely\b/undoubtedly/g" *.tw -$GREP "\bundreground\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundreground\b/underground/g" *.tw -$GREP "\buneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buneccesary\b/unnecessary/g" *.tw -$GREP "\bunecessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunecessary\b/unnecessary/g" *.tw -$GREP "\bunequalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunequalities\b/inequalities/g" *.tw -$GREP "\bunforseen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforseen\b/unforeseen/g" *.tw -$GREP "\bunforetunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforetunately\b/unfortunately/g" *.tw -$GREP "\bunforgetable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgetable\b/unforgettable/g" *.tw -$GREP "\bunforgiveable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgiveable\b/unforgivable/g" *.tw -$GREP "\bunfortunatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatley\b/unfortunately/g" *.tw -$GREP "\bunfortunatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatly\b/unfortunately/g" *.tw -$GREP "\bunfourtunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfourtunately\b/unfortunately/g" *.tw -$GREP "\bunihabited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunihabited\b/uninhabited/g" *.tw -$GREP "\bunilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilateraly\b/unilaterally/g" *.tw -$GREP "\bunilatreal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreal\b/unilateral/g" *.tw -$GREP "\bunilatreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreally\b/unilaterally/g" *.tw -$GREP "\buninterruped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterruped\b/uninterrupted/g" *.tw -$GREP "\buninterupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterupted\b/uninterrupted/g" *.tw -$GREP "\bUnitesStates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUnitesStates\b/UnitedStates/g" *.tw -$GREP "\buniveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveral\b/universal/g" *.tw -$GREP "\buniveristies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristies\b/universities/g" *.tw -$GREP "\buniveristy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristy\b/university/g" *.tw -$GREP "\buniverity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverity\b/university/g" *.tw -$GREP "\buniverstiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverstiy\b/university/g" *.tw -$GREP "\bunivesities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesities\b/universities/g" *.tw -$GREP "\bunivesity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesity\b/university/g" *.tw -$GREP "\bunkown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunkown\b/unknown/g" *.tw -$GREP "\bunlikey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunlikey\b/unlikely/g" *.tw -$GREP "\bunmistakeably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunmistakeably\b/unmistakably/g" *.tw -$GREP "\bunneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesarily\b/unnecessarily/g" *.tw -$GREP "\bunneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesary\b/unnecessary/g" *.tw -$GREP "\bunneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessarily\b/unnecessarily/g" *.tw -$GREP "\bunneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessary\b/unnecessary/g" *.tw -$GREP "\bunnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesarily\b/unnecessarily/g" *.tw -$GREP "\bunnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesary\b/unnecessary/g" *.tw -$GREP "\bunoffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoffical\b/unofficial/g" *.tw -$GREP "\bunoperational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoperational\b/nonoperational/g" *.tw -$GREP "\bunoticeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoticeable\b/unnoticeable/g" *.tw -$GREP "\bunplease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplease\b/displease/g" *.tw -$GREP "\bunplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplesant\b/unpleasant/g" *.tw -$GREP "\bunprecendented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecendented\b/unprecedented/g" *.tw -$GREP "\bunprecidented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecidented\b/unprecedented/g" *.tw -$GREP "\bunrealisticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrealisticly\b/unrealistically/g" *.tw -$GREP "\bunrepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepentent\b/unrepentant/g" *.tw -$GREP "\bunrepetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetant\b/unrepentant/g" *.tw -$GREP "\bunrepetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetent\b/unrepentant/g" *.tw -$GREP "\bunsubstanciated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsubstanciated\b/unsubstantiated/g" *.tw -$GREP "\bunsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesful\b/unsuccessful/g" *.tw -$GREP "\bunsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesfully\b/unsuccessfully/g" *.tw -$GREP "\bunsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccessfull\b/unsuccessful/g" *.tw -$GREP "\bunsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesful\b/unsuccessful/g" *.tw -$GREP "\bunsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesfuly\b/unsuccessfully/g" *.tw -$GREP "\bunsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessful\b/unsuccessful/g" *.tw -$GREP "\bunsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfull\b/unsuccessful/g" *.tw -$GREP "\bunsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfully\b/unsuccessfully/g" *.tw -$GREP "\bunsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprised\b/unsurprised/g" *.tw -$GREP "\bunsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprising\b/unsurprising/g" *.tw -$GREP "\bunsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprisingly\b/unsurprisingly/g" *.tw -$GREP "\bunsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprized\b/unsurprised/g" *.tw -$GREP "\bunsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizing\b/unsurprising/g" *.tw -$GREP "\bunsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizingly\b/unsurprisingly/g" *.tw -$GREP "\bunsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprized\b/unsurprised/g" *.tw -$GREP "\bunsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizing\b/unsurprising/g" *.tw -$GREP "\bunsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizingly\b/unsurprisingly/g" *.tw -$GREP "\buntill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntill\b/until/g" *.tw -$GREP "\buntranslateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntranslateable\b/untranslatable/g" *.tw -$GREP "\bunuseable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunuseable\b/unusable/g" *.tw -$GREP "\bunusuable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunusuable\b/unusable/g" *.tw -$GREP "\bunviersity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunviersity\b/university/g" *.tw -$GREP "\bunwarrented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwarrented\b/unwarranted/g" *.tw -$GREP "\bunweildly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunweildly\b/unwieldy/g" *.tw -$GREP "\bunwieldly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwieldly\b/unwieldy/g" *.tw -$GREP "\bupcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupcomming\b/upcoming/g" *.tw -$GREP "\bupgradded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupgradded\b/upgraded/g" *.tw -$GREP "\bupto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupto\b/up to/g" *.tw -$GREP "\busally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busally\b/usually/g" *.tw -$GREP "\buseage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseage\b/usage/g" *.tw -$GREP "\busefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefull\b/useful/g" *.tw -$GREP "\busefuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefuly\b/usefully/g" *.tw -$GREP "\buseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseing\b/using/g" *.tw -$GREP "\busualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busualy\b/usually/g" *.tw -$GREP "\bususally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bususally\b/usually/g" *.tw -$GREP "\bvaccum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccum\b/vacuum/g" *.tw -$GREP "\bvaccume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccume\b/vacuum/g" *.tw -$GREP "\bvacinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvacinity\b/vicinity/g" *.tw -$GREP "\bvaguaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaguaries\b/vagaries/g" *.tw -$GREP "\bvaieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaieties\b/varieties/g" *.tw -$GREP "\bvailidty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvailidty\b/validity/g" *.tw -$GREP "\bvaletta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaletta\b/valletta/g" *.tw -$GREP "\bvaluble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaluble\b/valuable/g" *.tw -$GREP "\bvalueable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvalueable\b/valuable/g" *.tw -$GREP "\bvarations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarations\b/variations/g" *.tw -$GREP "\bvarient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarient\b/variant/g" *.tw -$GREP "\bvariey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvariey\b/variety/g" *.tw -$GREP "\bvaring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaring\b/varying/g" *.tw -$GREP "\bvarities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarities\b/varieties/g" *.tw -$GREP "\bvarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarity\b/variety/g" *.tw -$GREP "\bvasall\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasall\b/vassal/g" *.tw -$GREP "\bvasalls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasalls\b/vassals/g" *.tw -$GREP "\bvegatarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegatarian\b/vegetarian/g" *.tw -$GREP "\bvegitable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitable\b/vegetable/g" *.tw -$GREP "\bvegitables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitables\b/vegetables/g" *.tw -$GREP "\bvegtable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegtable\b/vegetable/g" *.tw -$GREP "\bvehicule\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvehicule\b/vehicle/g" *.tw -$GREP "\bvell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvell\b/well/g" *.tw -$GREP "\bvenemous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvenemous\b/venomous/g" *.tw -$GREP "\bvengance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengance\b/vengeance/g" *.tw -$GREP "\bvengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengence\b/vengeance/g" *.tw -$GREP "\bverfication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverfication\b/verification/g" *.tw -$GREP "\bverison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverison\b/version/g" *.tw -$GREP "\bverisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverisons\b/versions/g" *.tw -$GREP "\bvermillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvermillion\b/vermilion/g" *.tw -$GREP "\bversitilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitilaty\b/versatility/g" *.tw -$GREP "\bversitlity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitlity\b/versatility/g" *.tw -$GREP "\bvetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvetween\b/between/g" *.tw -$GREP "\bveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bveyr\b/very/g" *.tw -$GREP "\bvigilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigilence\b/vigilance/g" *.tw -$GREP "\bvigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigourous\b/vigorous/g" *.tw -$GREP "\bvillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillian\b/villain/g" *.tw -$GREP "\bvillification\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillification\b/vilification/g" *.tw -$GREP "\bvillify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillify\b/vilify/g" *.tw -$GREP "\bvincinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvincinity\b/vicinity/g" *.tw -$GREP "\bviolentce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bviolentce\b/violence/g" *.tw -$GREP "\bvirtualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirtualy\b/virtually/g" *.tw -$GREP "\bvirutal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutal\b/virtual/g" *.tw -$GREP "\bvirutally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutally\b/virtually/g" *.tw -$GREP "\bvisable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisable\b/visible/g" *.tw -$GREP "\bvisably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisably\b/visibly/g" *.tw -$GREP "\bvisting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisting\b/visiting/g" *.tw -$GREP "\bvistors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvistors\b/visitors/g" *.tw -$GREP "\bvitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvitories\b/victories/g" *.tw -$GREP "\bvolcanoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolcanoe\b/volcano/g" *.tw -$GREP "\bvoleyball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvoleyball\b/volleyball/g" *.tw -$GREP "\bvolontary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolontary\b/voluntary/g" *.tw -$GREP "\bvolonteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteer\b/volunteer/g" *.tw -$GREP "\bvolonteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteered\b/volunteered/g" *.tw -$GREP "\bvolonteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteering\b/volunteering/g" *.tw -$GREP "\bvolonteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteers\b/volunteers/g" *.tw -$GREP "\bvolounteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteer\b/volunteer/g" *.tw -$GREP "\bvolounteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteered\b/volunteered/g" *.tw -$GREP "\bvolounteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteering\b/volunteering/g" *.tw -$GREP "\bvolounteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteers\b/volunteers/g" *.tw -$GREP "\bvolumne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolumne\b/volume/g" *.tw -$GREP "\bvreity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvreity\b/variety/g" *.tw -$GREP "\bvrey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvrey\b/very/g" *.tw -$GREP "\bvriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvriety\b/variety/g" *.tw -$GREP "\bvulnerablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvulnerablility\b/vulnerability/g" *.tw -$GREP "\bvyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyer\b/very/g" *.tw -$GREP "\bvyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyre\b/very/g" *.tw -$GREP "\bwaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwaht\b/what/g" *.tw -$GREP "\bwarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarantee\b/warranty/g" *.tw -$GREP "\bwardobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwardobe\b/wardrobe/g" *.tw -$GREP "\bwarrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrent\b/warrant/g" *.tw -$GREP "\bwarrriors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrriors\b/warriors/g" *.tw -$GREP "\bwasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwasnt\b/wasn't/g" *.tw -$GREP "\bwass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwass\b/was/g" *.tw -$GREP "\bwatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwatn\b/want/g" *.tw -$GREP "\bwayword\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwayword\b/wayward/g" *.tw -$GREP "\bweaponary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweaponary\b/weaponry/g" *.tw -$GREP "\bweas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweas\b/was/g" *.tw -$GREP "\bwehn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwehn\b/when/g" *.tw -$GREP "\bweilded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweilded\b/wielded/g" *.tw -$GREP "\bwendsay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwendsay\b/Wednesday/g" *.tw -$GREP "\bwensday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwensday\b/Wednesday/g" *.tw -$GREP "\bwereabouts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwereabouts\b/whereabouts/g" *.tw -$GREP "\bwhant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhant\b/want/g" *.tw -$GREP "\bwhants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhants\b/wants/g" *.tw -$GREP "\bwhcih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhcih\b/which/g" *.tw -$GREP "\bwheras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwheras\b/whereas/g" *.tw -$GREP "\bwherease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwherease\b/whereas/g" *.tw -$GREP "\bwhereever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhereever\b/wherever/g" *.tw -$GREP "\bwhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhic\b/which/g" *.tw -$GREP "\bwhihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhihc\b/which/g" *.tw -$GREP "\bwhith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhith\b/with/g" *.tw -$GREP "\bwhlch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhlch\b/which/g" *.tw -$GREP "\bwhn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhn\b/when/g" *.tw -$GREP "\bwholey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwholey\b/wholly/g" *.tw -$GREP "\bwhta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhta\b/what/g" *.tw -$GREP "\bwhther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhther\b/whether/g" *.tw -$GREP "\bwidesread\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwidesread\b/widespread/g" *.tw -$GREP "\bwief\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwief\b/wife/g" *.tw -$GREP "\bwierd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwierd\b/weird/g" *.tw -$GREP "\bwiew\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiew\b/view/g" *.tw -$GREP "\bwih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwih\b/with/g" *.tw -$GREP "\bwiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiht\b/with/g" *.tw -$GREP "\bwille\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwille\b/will/g" *.tw -$GREP "\bwillk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillk\b/will/g" *.tw -$GREP "\bwillingless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillingless\b/willingness/g" *.tw -$GREP "\bwirting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwirting\b/writing/g" *.tw -$GREP "\bwitheld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitheld\b/withheld/g" *.tw -$GREP "\bwithh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithh\b/with/g" *.tw -$GREP "\bwithing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithing\b/within/g" *.tw -$GREP "\bwithold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithold\b/withhold/g" *.tw -$GREP "\bwitht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitht\b/with/g" *.tw -$GREP "\bwitn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitn\b/with/g" *.tw -$GREP "\bwiull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiull\b/will/g" *.tw -$GREP "\bwnat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnat\b/want/g" *.tw -$GREP "\bwnated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnated\b/wanted/g" *.tw -$GREP "\bwnats\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnats\b/wants/g" *.tw -$GREP "\bwohle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwohle\b/whole/g" *.tw -$GREP "\bwokr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokr\b/work/g" *.tw -$GREP "\bwokring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokring\b/working/g" *.tw -$GREP "\bwonderfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwonderfull\b/wonderful/g" *.tw -$GREP "\bwordlwide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwordlwide\b/worldwide/g" *.tw -$GREP "\bworkststion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworkststion\b/workstation/g" *.tw -$GREP "\bworls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworls\b/world/g" *.tw -$GREP "\bworstened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworstened\b/worsened/g" *.tw -$GREP "\bwoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwoudl\b/would/g" *.tw -$GREP "\bwresters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwresters\b/wrestlers/g" *.tw -$GREP "\bwriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriet\b/write/g" *.tw -$GREP "\bwriten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriten\b/written/g" *.tw -$GREP "\bwroet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroet\b/wrote/g" *.tw -$GREP "\bwrok\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwrok\b/work/g" *.tw -$GREP "\bwroking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroking\b/working/g" *.tw -$GREP "\bwtih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwtih\b/with/g" *.tw -$GREP "\bwupport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwupport\b/support/g" *.tw -$GREP "\bxenophoby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bxenophoby\b/xenophobia/g" *.tw -$GREP "\byaching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaching\b/yachting/g" *.tw -$GREP "\byaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaer\b/year/g" *.tw -$GREP "\byaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaerly\b/yearly/g" *.tw -$GREP "\byaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaers\b/years/g" *.tw -$GREP "\byatch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byatch\b/yacht/g" *.tw -$GREP "\byearm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byearm\b/year/g" *.tw -$GREP "\byeasr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeasr\b/years/g" *.tw -$GREP "\byeild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeild\b/yield/g" *.tw -$GREP "\byeilding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeilding\b/yielding/g" *.tw -$GREP "\byera\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byera\b/year/g" *.tw -$GREP "\byrea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byrea\b/year/g" *.tw -$GREP "\byeras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeras\b/years/g" *.tw -$GREP "\byersa\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byersa\b/years/g" *.tw -$GREP "\byotube\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byotube\b/youtube/g" *.tw -$GREP "\byouseff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouseff\b/yousef/g" *.tw -$GREP "\byouself\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouself\b/yourself/g" *.tw -$GREP "\bytou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bytou\b/you/g" *.tw -$GREP "\byuo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byuo\b/you/g" *.tw -$GREP "\bzeebra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bzeebra\b/zebra/g" *.tw -find . -name "*.tw.bak" -type f -print0 | xargs -0 /bin/rm -f \ No newline at end of file