Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sibawe

    Interaction between awk and a private gcc-compiled program

    Your answer works fine. Thx futurelet!!
  2. sibawe

    awk for a specific word and only that word

    Hello, The simplest is to add a space before $i in your grep: => grep " \<$i\>" instead of grep "\<$i\>" . It works but isn't too elegant. Your problem is that grep "admin" returns 2 lines. grep -w doesn't seem too helpful. Special regexps in egrep should do. But here again nothing seems...
  3. sibawe

    Interaction between awk and a private gcc-compiled program

    Hello, I need to interact awk with an existing program (gcc-compiled) I wrote. This gcc-program takes arguments at the command line and returns a number. More precisely, the arguments are listed in a text file ; I need awk to fetch the arguments, serve them as input to the gcc-program and ...

Part and Inventory Search

Back
Top