Live data from Hacker News

Viewing profile — uselessuseof

uselessuseof

HN member
Joined
Wed, Jun 06, 2012, 10:03 PM UTC
HN karma
1
Public activity
12 items

About uselessuseof

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #4080810

    does your grep have an -f option? printf linkedintrouble |sha1sum |sed 's/ .*//' |grep -f - combo_not.txt

  3. comment
    Comment #4077354

    cut takes a file as an argument. there's no need to start the line with cut -c4-70 combo_not.txt|...

  4. comment
    Comment #4077048

    echo abc > file 1. cat file 2. cat 3. echo abc|cat 4. echo abc|cat - file cat can take input from the left, the right, or both same goes for cut

  5. comment
    Comment #4076793

    how about skey and one time passwords

  6. comment
    Comment #4076768

    printf linkedintrouble |openssl sha1|grep -f - combo_not.txt

  7. comment
    Comment #4076729

    symmetric?

  8. comment
    Comment #4076593

    head -5 /usr/share/dict/words same result as with xargs grep petard /usr/share/dict/words same result as with xargs not sure what you are trying to demonstrate here useless use of …

  9. comment
    Comment #4076556

    another useless use of cat cut -c7-40 combo_not.txt|sort|dups|wc -l what the heck is dups? cut -c7-40 combo_not.txt|sort|uniq -d|wc -l

  10. comment
    Comment #4076455

    export HISTSIZE=0

  11. comment
    Comment #4076450

    obligatory comments - not portable - useless use of backticks printf password|openssl sha1|cut -c6-40|grep -f - hacked.txt

  12. comment