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