Replace comments patch with an AWK script
[khome.git] / patch-comments
1 #! /usr/bin/awk -f
2
3 FILENAME ~ /\.comments$/ {
4 commented[$1] = $0
5 next
6 }
7
8 commented[$1] {
9 print commented[$1]
10 next
11 }
12
13 1
This page took 0.055995 seconds and 4 git commands to generate.