まず、/tmp/test
ファイルパスに次のディレクトリがあります。
amb
bmb
cmb
このコマンドを実行すると、これらの3つのディレクトリに次のファイルのfind
リストが表示されます。
amb/eng/canon.amb
bmb/eng/case.bmb
cmb/eng/hint.cmb
list1
ループを使用して、for
ファイルの種類に応じて各ファイルをインポートしようとします。それ*.amb
以外の場合は、*.bmb
特定の*.cmb
IFを実行する必要があります。
cd /tmp/test
find */ -type f -exec ls {} \; > /tmp/test/list1
for file in `cat /tmp/test/list1`
do
if [ -f *.amb ]
then
sed "s/amb/amx/g" /tmp/test/list1 > /tmp/test/list2
ls /tmp/test/list2 >> /tmp/test/finallist
fi
if [ -f *.bmb ]
then
sed "s/bmb/bmx/g" /tmp/test/list1 > /tmp/test/list2
ls /tmp/test/list2 >> /tmp/test/finallist
fi
if [ -f *.cmb ]
then
sed "s/cmb/cmx/g" /tmp/test/list1 > /tmp/test/list2
ls /tmp/test/list2 >> /tmp/test/finallist
fi
done
echo "*********************"
echo -e "\nFinal list of files after replacing from tmp area"
felist=`cat /tmp/test/finallist`
echo -e "\nfefiles_list=`echo $felist`"
したがって、最終出力は次のようになります。
amx/eng/canon.amx
bmx/eng/case.bmx
cmx/eng/hint.cmx
答え1
ファイルのサフィックスによって異なる操作を適用しようとしているようです。
#!/bin/bash
while IFS= read -d '' -r file
do
# amb/eng/canon.amb
extn=${file##*.}
case "$extn" in
(amb) finallist+=("${file//amb/amx}") ;;
(bmb) finallist+=("${file//bmb/bmx}") ;;
(cmb) finallist+=("${file//cmb/bmx}") ;;
esac
done <( cd /tmp/test && find */ -type f -print0 2>/dev/null )
printf '*********************\n\n'
printf 'Final list of files after replacing from tmp area\nfefiles_list=%s\n' "${finallist[*]}"
さて、
find */ -type f -exec ls {} \; > /tmp/test/list1
find */ -type f -print > /tmp/test/list1
すでに表示されているので、作成することをお勧めします。オペレーティングシステム。find */ -type f > /tmp/test/list1
しかし、これは奇妙な(しかし正当な)ファイル名を壊します。- バックティックは使用されなくなり、代わりにバックティックを使用する必要があります
$( … )
。ただし、スペースやその他の特殊文字を含むファイル名は破損します。
答え2
bashではelifとも呼ばれるelse ifを使用してください。たとえば、次のようになります。
if [ $something ]; then
echo "something"
elif [ $something_else ]; then
echo "something_else"
elif [ $nothing ]; then
echo "nothing"
else
echo "no match"
fi