#!/bin/sh x=1 while [ $x -ne 11 ] do if [ -e subsky_skyflat-00${x}.fit ]; then sex subsky_skyflat-00${x}.fit -c detect.sex awk '$1>0{print}' test.cat | sort -n -k 4 -r | head -110 | tail -100 > detect00${x}.cat #出来上がりファイルの名前変更# else #x=10 sex subsky_skyflat-0${x}.fit -c detect.sex awk '$1>0{print}' test.cat | sort -n -k 4 -r | head -110 | tail -100 > detect0${x}.cat fi echo "x=$x" x=`expr $x + 1` done