File: extract

package info (click to toggle)
linux 4.9.25-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 794,052 kB
  • ctags: 3,033,799
  • sloc: ansic: 14,481,780; asm: 287,385; makefile: 35,234; perl: 27,553; sh: 15,791; python: 13,364; cpp: 6,087; yacc: 4,337; lex: 2,439; awk: 1,212; pascal: 231; lisp: 218; sed: 21
file content (58 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download | duplicates (32)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh

set -e

PREFIX=$1
shift

trap 'rm -r $TMPDIR' 0
TMPDIR=`mktemp -d`

exec 3>/dev/null
for f; do
    while IFS="
" read -r LINE; do
	case "$LINE" in
	    *$PREFIX:[0-9]*:\**)
		NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
		if [ -f $TMPDIR/$NUM ]; then
		    echo "$TMPDIR/$NUM already exits prior to $f"
		    exit 1
		fi
		exec 3>>$TMPDIR/$NUM
		echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
		/bin/echo "$LINE" | sed -e "s/$PREFIX:[0-9]*//" -e "s/:\*/*/" >&3
		;;
	    *$PREFIX:[0-9]*)
		NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
		if [ -f $TMPDIR/$NUM ]; then
		    echo "$TMPDIR/$NUM already exits prior to $f"
		    exit 1
		fi
		exec 3>>$TMPDIR/$NUM
		echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
		/bin/echo "$LINE" | sed "s/$PREFIX:[0-9]*//" >&3
		;;
	    *:\**)
		/bin/echo "$LINE" | sed -e "s/:\*/*/" -e "s,/\*\*/,," >&3
		echo >&3
		exec 3>/dev/null
		;;
	    *)
		/bin/echo "$LINE" >&3
		;;
	esac
    done < $f
    echo >&3
    exec 3>/dev/null
done

LASTFILE=""
for f in $TMPDIR/*; do
    if [ "$LASTFILE" != $(cat $TMPDIR/.$(basename $f) ) ]; then
	LASTFILE=$(cat $TMPDIR/.$(basename $f) )
	echo "[ $LASTFILE ]"
    fi
    cat $f
done