指定されたディレクトリのファイルをループしています。しかし、私はその論理を理解していないようです。助けてもらえますか?私は各ファイルをループして、そのファイルを削除するかどうか尋ねています。シェルプログラミング、スレッドファイルのロッキング
#!/bin/bash
dirpath=$1
y=y
Y=Y
echo "changing directory '$dirpath' `cd $dirpath`"
for f in $1/*
do
#####################################
if test -f `ls -1 $1`
then
echo -n "remove file '$f' `ls -1` ?"
read answer
##########################
if test $answer = $y || test $answer = $Y
then
echo "Processing $f file..."
echo `rm $f`
echo "file '$f' deleted "
else
echo "file '$f' not removed"
fi#2nd if loop
############################
else
echo 'not a file'
fi#1st if loop
#######################################
done
問題が何ですか? –