gitignore

This commit is contained in:
Jason Stewart 2022-01-01 10:32:31 -05:00
parent a96a8bb062
commit bf478bc075
2 changed files with 9 additions and 20 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
Session.vim

View file

@ -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
#