Replace comments patch with an AWK script
[khome.git] / patch-comments
... / ...
CommitLineData
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.031101 seconds and 4 git commands to generate.