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 SkipVought 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: *

  • Users: Yacov
  • Order by date
  1. Yacov

    awk gives an error of " too many fields "

    I am trying to work with a file which have 318 fields per record. when using awk I am getting &quot; too many fields &quot; error when trying to do any thing with awk<br> awk '{print NF}' file gives this error.<br> <br> Any suggestions how to proccess this file, using awk ?
  2. Yacov

    java can't find my class

    You might add the . ( current directory ) to your CLASS_PATH variable , because if it is a new compiled class then it will be in your current dir.
  3. Yacov

    java can't find my class

    You might add the . ( current directory ) to your CLASS_PATH variable , because if it is a new compiled class then it will be in your current dir.
  4. Yacov

    Remove commas when inside quotes

    sed 's/\"\(.*\),\(.*\)\"/"\1 \2"/' /tmp/in_file&gt;/tmp/out_file<br> <br> The above will work only if there is 1 , within the quotes, you can<br> add as many , as you like by modifying the above line
  5. Yacov

    Remove commas when inside quotes

    sed 's/\"\(.*\),\(.*\)\"/"\1 \2"/' /tmp/in_file&gt;/tmp/out_file<br> <br> The above will work only if there is 1 , within the quotes

Part and Inventory Search

Back
Top