Back (Current repo: scraps)

random scraps and notes that are useful to me
To clone this repository:
git clone https://git.viktor1993.net/scraps.git
Log | Download | Files | Refs

commit e31a49cb21fa221a24f2a014426e80001aa4676b
parent aeef4efb85759bb6c3b8cf51d415c528ea799629
Author: root <root>
Date:   Wed, 23 Apr 2025 02:10:05 +0200

fix typos

Diffstat:
Mawk/compare_single_columns.awk | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/awk/compare_single_columns.awk b/awk/compare_single_columns.awk @@ -10,7 +10,7 @@ BEGIN{ if($0 in a) { a[$0]="-1" } else { - print + print $0 } } @@ -18,7 +18,7 @@ END{ print "Only in "ARGV[1]":"; for(x in a) { if(a[x]!="-1") { - print x;} - + print x; + } } }