5 lines
82 B
Bash
5 lines
82 B
Bash
|
|
for d in *.tar.gz ; do
|
|
tar -xvzf "$d".tar.gz -C some_custom_folder_name
|
|
done
|