문제

Good day, everyone! I have a file with a list of inlined c++ functions. I want to c++filt them. But not all the functions of the list are interesting for me, so i use awk sript to get the nessesary functions.

So, the question is, how to combine "c++filt" and "awk" commands in terminal to analyze the output of awk script by "c++filt" command? Thanx for every answer

도움이 되었습니까?

해결책

awk ... | c++filt -t 

should do (where ... denotes your awk filter)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top