mirror of
https://github.com/BourgeoisBear/clrzr.git
synced 2026-09-10 07:16:27 -04:00
gitignore
This commit is contained in:
parent
a96a8bb062
commit
bf478bc075
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Session.vim
|
||||
|
|
@ -21,32 +21,20 @@ BEGIN {
|
|||
|
||||
{
|
||||
szLine = $1
|
||||
# print "L: " szLine
|
||||
if( szLine == "--END--" ) {
|
||||
print szLine
|
||||
fflush()
|
||||
}
|
||||
else {
|
||||
while( 1 ) {
|
||||
|
||||
while( 1 ) {
|
||||
match(szLine, rExpr)
|
||||
|
||||
match(szLine, rExpr)
|
||||
|
||||
if( RLENGTH < 0 ) {
|
||||
break
|
||||
}
|
||||
|
||||
print substr(szLine, RSTART, RLENGTH)
|
||||
fflush()
|
||||
szLine = substr(szLine, RSTART + RLENGTH)
|
||||
if( RLENGTH < 0 ) {
|
||||
break
|
||||
}
|
||||
|
||||
print substr(szLine, RSTART, RLENGTH)
|
||||
fflush()
|
||||
szLine = substr(szLine, RSTART + RLENGTH)
|
||||
}
|
||||
}
|
||||
|
||||
# END {
|
||||
# print "================================== END =================================="
|
||||
# }
|
||||
|
||||
# GAWK: --sandbox
|
||||
# AWK: --safe
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue