Skip to content

Commit

Permalink
Escape properly bash command
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseEspinosa committed Sep 29, 2023
1 parent 59d43d9 commit 6d71c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/local/download_pdbmmcif.nf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ process DOWNLOAD_PDBMMCIF {
raw
echo "Unzipping all mmCIF files..."
find ./raw -type f -name '*.[gG][zZ]' -print0 | while IFS= read -r -d $'\0' file; do
find ./raw -type f -name '*.[gG][zZ]' -print0 | while IFS= read -r -d \$'\\0' file; do
gunzip "$file"
done
Expand Down

0 comments on commit 6d71c38

Please sign in to comment.