7 lines
90 B
Bash
7 lines
90 B
Bash
#!/bin/bash
|
|
|
|
cd /var/log/stunnel
|
|
|
|
for file in *.log; do
|
|
xz -k -2 -vT6 "$file"
|
|
done |