~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/lguest/extract

Version: ~ [ linux-6.4-rc3 ] ~ [ linux-6.3.4 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.30 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.113 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.180 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.243 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.283 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.315 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #! /bin/sh
  2 
  3 set -e
  4 
  5 PREFIX=$1
  6 shift
  7 
  8 trap 'rm -r $TMPDIR' 0
  9 TMPDIR=`mktemp -d`
 10 
 11 exec 3>/dev/null
 12 for f; do
 13     while IFS="
 14 " read -r LINE; do
 15         case "$LINE" in
 16             *$PREFIX:[0-9]*:\**)
 17                 NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
 18                 if [ -f $TMPDIR/$NUM ]; then
 19                     echo "$TMPDIR/$NUM already exits prior to $f"
 20                     exit 1
 21                 fi
 22                 exec 3>>$TMPDIR/$NUM
 23                 echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
 24                 /bin/echo "$LINE" | sed -e "s/$PREFIX:[0-9]*//" -e "s/:\*/*/" >&3
 25                 ;;
 26             *$PREFIX:[0-9]*)
 27                 NUM=`echo "$LINE" | sed "s/.*$PREFIX:\([0-9]*\).*/\1/"`
 28                 if [ -f $TMPDIR/$NUM ]; then
 29                     echo "$TMPDIR/$NUM already exits prior to $f"
 30                     exit 1
 31                 fi
 32                 exec 3>>$TMPDIR/$NUM
 33                 echo $f | sed 's,\.\./,,g' > $TMPDIR/.$NUM
 34                 /bin/echo "$LINE" | sed "s/$PREFIX:[0-9]*//" >&3
 35                 ;;
 36             *:\**)
 37                 /bin/echo "$LINE" | sed -e "s/:\*/*/" -e "s,/\*\*/,," >&3
 38                 echo >&3
 39                 exec 3>/dev/null
 40                 ;;
 41             *)
 42                 /bin/echo "$LINE" >&3
 43                 ;;
 44         esac
 45     done < $f
 46     echo >&3
 47     exec 3>/dev/null
 48 done
 49 
 50 LASTFILE=""
 51 for f in $TMPDIR/*; do
 52     if [ "$LASTFILE" != $(cat $TMPDIR/.$(basename $f) ) ]; then
 53         LASTFILE=$(cat $TMPDIR/.$(basename $f) )
 54         echo "[ $LASTFILE ]"
 55     fi
 56     cat $f
 57 done
 58 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp