我的内容为file 1
wire x;
wire y;
input a;
input b;
input c;
reg m;
reg n;
我必须以下列方式将信号a
,b
,c
仅放在另一个文件file 2
中
assign inst.a=;
assign inst.b=;
assign inst.c=;
任何人都可以使用Perl或Python帮我解决这个问题吗?
答案 0 :(得分:1)
这个单线Perl程序
perl -lne 'print "assign inst.$1=;" if /^input\h+(\w+);/' 'file 1'