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 IamaSherpa 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. anamorph

    AWK - replacing data with reference file

    here's what i did ... tmp_analysis_phase_one="/tmp/tmp_$$_analysis.pt1" tmp_analysis_phase_two="/tmp/tmp_$$_analysis.pt2" tmp_analysis_phase_three="/tmp/tmp_$$_analysis.pt3" for i in $tmp_analysis_phase_two do for z in $(cat $i) do if [ ! $z == "null" ] then ip_addr=$(nslookup...
  2. anamorph

    AWK - replacing data with reference file

    I have never used associative arrays before. could you help me out on this ? regards
  3. anamorph

    AWK - replacing data with reference file

    well, i've tried ... that's a start ;) I broke down the merge in two steps: merge file #1 and file #2 then merge the result with file #3. I've used paste() in the paste but this is no job for it. I forgot to mention earlier, file #1 contains a liste of groups, a "reference file". basically...
  4. anamorph

    AWK - replacing data with reference file

    Hello, I have three files that i need to merde into one using awk: file #1 GROUP;GADMIN file #2 USER;GROUP file #3 USER;UADMIN i need to merge those files into the following sequence: USER;GROUP;GADMIN;UADMIN could you please help me out ? Thanks in advance, anamorph

Part and Inventory Search

Back
Top