archie/release/B/scripts/show_arcompress
2024-05-28 16:48:29 +02:00

11 lines
183 B
Bash
Executable File

#!/bin/sh
for i do
x=`grep -n @header_end $i | awk -F: '{print $1}'`
head -$x $i | sed s/compress_lz/raw/
x=`expr $x + 1`
tail +$x $i | zcat | sed s/
//
echo ""
echo ""
done