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

  1. Annihilannic

    Outlook 2013 - Close original message window when deleting?

    Hi, I know Outlook 2013 and preceding versions have a "Close original message when replying or forwarding" option... but how about when deleting? As I work through my email each day, many of which contain references to support tickets or links to other external sites to do some work or...
  2. Annihilannic

    How to parse syslog.conf for errors?

    I haven't touched Solaris for a few years now, but the most common problem used to be using spaces instead of tabs. syslog.conf at the time only supported tabs as field separators. Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  3. Annihilannic

    getting rid of tailing zeroes in floating number

    This works. Unfortunately complex because sed -r doesn't seem to support greediness (?) in ERE: sed -r 's/(\.([0-9]*[1-9])?)0+$/\1/;s/\.$//' By contrast, perl does: perl -pe 's/(\.[0-9]*?)0+$/\1/;s/\.$//' But the awk solution is probably the must human-compatible anyway. :-) Annihilannic...
  4. Annihilannic

    Failed in installing XML::LibXML

    I'd guess that libxml-2.x != libxml2. Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  5. Annihilannic

    Half a Movie is better than None

    Hawaii 2.5-0 Four-and-a-half Months 704 Ferris Bueller's Morning Off Sit By Me Middle Gun Very Short Circuit (to correct the one mentioned earlier?) The Gods Must Be Occasionally Unpredictable Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  6. Annihilannic

    Stupid customers

    I'll consider myself moved to the isolation vault. ;-) Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  7. Annihilannic

    Stupid customers

    I'd use AVG Free over those two abominations any day! (Neither would have saved your customer from CryptoLocker in my experience...) Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  8. Annihilannic

    compare lists of comma separated options

    Seems good enough, I would probably have sorted the two lists and used 'diff' and customised output format, or 'comm' and my own format handling, but I don't think it would be any better really. And yes, you could use perl/awk/whatever but it would just be the same code as you wrote in a...
  9. Annihilannic

    "]" as field separator in awk

    Another trick, if the first character in a character class is ], it is treated literally. Likewise if the last character is [. So this should also work: awk -F '[]/[]' '{print $(NF-2),$(NF-1)}' And you aren't in \\\\\escape hell... :-) Annihilannic tgmlify - code syntax highlighting for...
  10. Annihilannic

    Unix Script for realtime log monitoring and performing tasks

    I wrote a similar script in Perl to filter HP-UX syslogs. Basically it does something similar to a 'tail -f' on the log file, matches substrings and invokes various commands or logic based on what is matched. It's too specific to our requirements to share here, but yours sounds equally...
  11. Annihilannic

    Any good clientless VPN solutions either free or Open Source

    SoftEther looks pretty good. Waht do you mean by clientless though? Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  12. Annihilannic

    CajunCenturion

    Very sad news... a smart and fair fellow. Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  13. Annihilannic

    Selective RS in AWK

    I see you're trying over at Stack Overflow, but I concur with them, that code yields: Jul 2014: data disk -delim :60000 ...given your sample data. So something must be different with your real data. Did you make any progress since? Annihilannic tgmlify - code syntax highlighting for your...
  14. Annihilannic

    Vanity Plates "XIV"

    Murdoch was the crazy pilot, I think you're thinking of... Hannibal? Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  15. Annihilannic

    Vanity Plates "XIV"

    Me neither, Sam... what's the joke? Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  16. Annihilannic

    Vanity Plates "XIV"

    Haha... unrelated, but reminds me, to combat Jehovah's Witnesses climing OVER our fence and knocking on the BACK door of our previous house (the front door was inside the garage...), we put up signs on the side gates: Do you believe in life after death? (Skull & Crossbones) Trespass...
  17. Annihilannic

    Vanity Plates "XIV"

    Or ESC+HOME... has more meaning, but is a combination you wouldn't use as much on a computer. Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  18. Annihilannic

    Word abuses

    Reminds me of the Little Johnny joke which prefaces this document: http://brooklyn-wac.org/wp-content/uploads/2012/03/raimes-errors-windows-1991.pdf ...which happens to be interesting and relevant in itself! Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  19. Annihilannic

    Word abuses

    Would you say bucketloads or buckets loaded? Annihilannic tgmlify - code syntax highlighting for your tek-tips posts
  20. Annihilannic

    Word abuses

    Like, literally?? :-) Annihilannic tgmlify - code syntax highlighting for your tek-tips posts

Part and Inventory Search

Back
Top