for $i in 2 4 6 8 10 12 14 16 18 20
do
cd fasta_$i
nohup sh zz.sh > ../$i.txt 2>&1 &
cd ..
done
#!/bin/bash
for j in $(seq 1 2)
do
CAT -i gene_2.fasta
done
#!/bin/bash
for i in $(seq 1 10)
do
time sh ./z.sh
done
nohup sh zz.sh > ../10.txt 2>&1 &
for $i in 2 4 6 8 10 12 14 16 18 20
do
cd fasta_$i
nohup sh zz.sh > ../$i.txt 2>&1 &
cd ..
done
#!/bin/bash
for j in $(seq 1 2)
do
CAT -i gene_2.fasta
done
#!/bin/bash
for i in $(seq 1 10)
do
time sh ./z.sh
done
nohup sh zz.sh > ../10.txt 2>&1 &