From 428bf12afb9f3f167d80d99f5d791f5133a9ea60 Mon Sep 17 00:00:00 2001 From: othocaeS Date: Tue, 26 Jul 2016 13:19:02 -0400 Subject: [PATCH] added script to repair thor names that had to be reduced due to UTF incompatibility --- scripts/fix_thor_names.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/fix_thor_names.sh diff --git a/scripts/fix_thor_names.sh b/scripts/fix_thor_names.sh new file mode 100644 index 0000000..8f47e9b --- /dev/null +++ b/scripts/fix_thor_names.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + + +for analysis in analysis/* +do + basename $analysis| + sed 's|A_|Å\)|g'| + sed 's|_|\(𝛌=|'| + sed 's|__|\)≻|'| + sed 's|_|\(𝛌=|'| + sed 's|_|≻|'| \ No newline at end of file