#!/usr/bin/bash fl=`ls *.gz 2> /dev/null` for i in ${fl[@]};do gunzip ${i} 2> /dev/null done
Back to top