-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 63051 b: refs/heads/master c: d941cf5 h: refs/heads/master i: 63049: 9c2f25c 63047: aacb564 v: v3
- Loading branch information
Linus Torvalds
committed
Jul 26, 2007
1 parent
07fe5f7
commit 589bf9f
Showing
484 changed files
with
10,772 additions
and
5,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 393618510d5349e07d71dc28fb6fc49baf0d96a0 | ||
refs/heads/master: d941cf5e373c356723fa648b9f0302a11c9b1770 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 | ||
|
Oops, something went wrong.