# This filter requires one command line option of form -vN=n # where n must be a decimal number. # # Repeat each input line containing $$ n times, replacing $$ with 0...n-1. # Replace each $# with n, and each $* with a single $. BEGIN { n = N + 0 } { if (/\$\$/) { rep = n } else { rep = 1 } for (i = 0; i < rep; ++i) { tmp = $0 gsub(/\$\$/, i, tmp) gsub(/\$\#/, n, tmp) gsub(/\$\*/, "$", tmp) print tmp } } git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/net/openvswitch
AgeCommit message (Expand)AuthorFilesLines
2017-02-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-nextDavid S. Miller1-7/+5
2017-02-02netfilter: add and use nf_ct_set helperFlorian Westphal1-4/+2
2017-02-02skbuff: add and use skb_nfct helperFlorian Westphal1-3/+3