よろしくお願いします!
いくつかのhtmlファイルを含むディレクトリがあります
$ ls template/content/html
devel.html
idex.html
devel_iphone.html
devel_ipad.html
同じ名前のファイルがまだ存在しない場合にのみ、そのフォルダー内のすべてのファイルを新しい場所(introduction / files /)にコピーするbash関数を作成したいと思います。
これは私がこれまでに持っているものです:
orig_html="template/content/html";
dest_html="introduction/files/";
function add_html {
for f in $orig_html"/*";
do
if [ ! -f SAME_FILE_IN_$dest_html_DIRECTORY ];
then
cp $f $dest_html;
fi
done
}
大文字は私が立ち往生した場所です。
どうもありがとうございます。