083fcb24be
And regular update
10 lines
129 B
Bash
Executable file
10 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
shopt -s nullglob
|
|
fs=(*.gz)
|
|
#echo "${fs[@]}"
|
|
for f in "${fs[@]}"
|
|
do
|
|
echo File: $f
|
|
gunzip -c $f | grep "Msg]"
|
|
done
|
|
|