Skip to content

Instantly share code, notes, and snippets.

@ruxi
Created January 6, 2017 20:49
Show Gist options
  • Save ruxi/65f4525cc34fcdd409a262b207c6cf3e to your computer and use it in GitHub Desktop.
Save ruxi/65f4525cc34fcdd409a262b207c6cf3e to your computer and use it in GitHub Desktop.
# Rename all *.fasta to *.sra
for f in *.fasta; do
mv -- "$f" "${f%.fasta}.sra"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment