Commit 914af42a authored by Marine Bergot's avatar Marine Bergot

Upload New File

parent 78ae2809
#!/bin/bash
for i in $1/TAD*/
do
for file in $i/*.txt
do
if [[ $(wc -l < $file) -le 1 ]]
then
wc -l $file
rm $file
fi
done
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment