Hi all,
I wrote a loop to unzip all zip files in a directory.
for f in *zip
do
unzip $f
done
However, I have to confirm the overwrite at every step:
replace file123.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: A
How can I rewrite a loop to send at every cycle the same command?