https URLから最新のファイルを取得する方法。次のコマンドは、URL内のすべてのファイルを結合します。
ファイル_20200819_000021_402.csv
ファイル_20200819_060004_003.csv
ファイル_20200819_120004_973.csv
wget -N --user=****** --password='******' -r -l1 --no-parent -A.csv https://url/ -O /home/oracle/testsss.csv
答え1
-O
このパラメータを削除する必要があります。
-O file
The documents will not be written to the appropriate files,
but all will be concatenated together and written to file.