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 Mike Lewis 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. HopeLessGuy

    Cisco Visio Stencils

    I checked that archive, is the Cisco 7010 (7000 Series) in there? I couldn't find it, they only named 7100 and above. Also, their Cisco 5505 is listed as a 5000 Series which is supposed to be 5505. Maybe I overlooked it...
  2. HopeLessGuy

    Cisco 7010 Stencil

    Does anyone happen to have a stencil for this model, or 7000 series? I got the stencils off the Cisco site, but it seems to start around the 7100+ series. Unless I'm missing it in the list of routers. Also, same goes for the Cisco 5505. The stencil is present, however it's noted as a 5000...
  3. HopeLessGuy

    Pipe statement in While Loop

    (Korn Script on Sun Solaris) I currently have a while loop which reads the file till EOF. The file contains file names that are to be searched. In the while statement, I noticed that korn shell does not treat the pipe, | , as it original is used. For example - while read tmpFiles do...
  4. HopeLessGuy

    While statement and Pipe

    I currently have a while loop which reads the file till EOF. The file contains file names that are to be searched. In the while statement, I noticed that korn shell does not treat the pipe, | , as it original is used. For example - while read tmpFiles do i=$i+1 tmpArray[i]=$tmpFiles...
  5. HopeLessGuy

    Grep and -L

    Thank you Annihilannic! That code has helped me, again thanks for helping!! Back to more scripting I go :p
  6. HopeLessGuy

    Grep and -L

    I just found a way around it, probably very inefficient and time consuming :p But I just used an 'IF' statement, since for my case I needed to find files that contained both strings. As a result, I used a nested 'IF' statement. if grep "stringhere" *.rcf *.txt #First String then...
  7. HopeLessGuy

    Grep and -L

    Nevermind, found out already. Nothing bad about trial and error :p
  8. HopeLessGuy

    Grep and -L

    One more thing, is there a way to search for more than one string, where as the condition must be met or else return false? I've read using '|' - grep "Yo|Me" * is how to search for multiple strings... But it seems to act as an OR operator and not AND (I've tried & and &&). Is there...
  9. HopeLessGuy

    Grep and -L

    Thank you very much Annihilannic and bigdaddy01. Those examples were exactly what I had in mind. Again, thank you!!
  10. HopeLessGuy

    Grep and -L

    I have a question. In Linux, grep -L would show the filenames of all files that didn't have the string I was searching for. Does SunOS have an equivilent to this? The closest I can see is -v, but that shows the entire body excluding the string and doesn't show the filenames(s). Also, is...

Part and Inventory Search

Back
Top