clear && find . -name “*.tex” -exec grep -Hn <search string> {} \;
Posts Tagged ‘grep’
April 11, 2013
0
check if library is on ld search path
By thomas in C++, gcc, linuxIf you have linker problems you might want to ensure that you actually have the librariess that you are linking into your program on your ld search path. This can be investigated using ldconfig and grep ldconfig -v prints out the paths on the ld search path and what libraries is on the path. It […]
Tags: case insensitive, grep, ldconfig, shared library