Skip to content
Snippets Groups Projects
Verified Commit 7632aaf5 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

flexi_splitter: double escape sed cmd

parent c4c0f64a
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ process split_file {
rm -Rf split/unassigned
mkdir -p results/
find split -type "f" | \
sed -E "s|(.*/split/(.*)/(.*))|\1 \2_\3|g" |
sed -E "s|(.*/split/(.*)/(.*))|\\1 \\2_\\3|g" |
awk '{system("mv "\$1" results/"\$2)}'
"""
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment