Skip to content

Instantly share code, notes, and snippets.

@jottenlips
Last active January 20, 2021 00:08
Show Gist options
  • Save jottenlips/c39b33dc594381d12da608dad819b607 to your computer and use it in GitHub Desktop.
Save jottenlips/c39b33dc594381d12da608dad819b607 to your computer and use it in GitHub Desktop.
Script for Michael
#!/bin/bash
lowercase_remove_dash () {
sed -e 's/-//g' $1 | tr '[:upper:]' '[:lower:]'
}
find . -maxdepth 1 -regex '\./.*\.fsa' | while read file; do printf "%s\n" $(lowercase_remove_dash $file) > $file; done
@jottenlips
Copy link
Author

sh dna_cleaning_script.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment