%PDF- %PDF-
Direktori : /proc/self/root/usr/src/node-v0.10.4/tools/ |
Current File : //proc/self/root/usr/src/node-v0.10.4/tools/changelog-head.sh |
#!/bin/bash cat ChangeLog | { s=-1 while read line; do if [ "${line:0:1}" == "-" ]; then line=" $line" fi if [ "${line:0:1}" == "2" ]; then let "++s" fi if [ $s -eq 1 ]; then exit else echo "$line" fi done }