项目作者: GlitchYou

项目描述 :
Cria lista de caracteres/palavras
高级语言: Python
项目地址: git://github.com/GlitchYou/Crunpy.git
创建时间: 2020-02-27T20:19:22Z
项目社区:https://github.com/GlitchYou/Crunpy

开源协议:

下载


Crunpy

  1. python crunpy.py min max [lists | strings] [-c 'out({})']
  2. lists = 1 2 3 4 ...
  3. strings = abcdefg ...
  4. -c = 'command_in_python({resulte_code})'
  5. EX:
  6. python crunpy.py 1 1 abc
  7. a
  8. b
  9. c
  10. python crunpy.py 1 2 name 2000 2010 1978
  11. name
  12. 2000
  13. 2010
  14. 1978
  15. namename
  16. name2000
  17. name2010
  18. name1978
  19. 2000name
  20. 20002000
  21. 20002010
  22. 20001978
  23. 2010name
  24. 20102000
  25. 20102010
  26. 20101978
  27. 1978name
  28. 19782000
  29. 19782010
  30. 19781978
  31. python crunpy 1 1 abc -c 'out({}.upper())'
  32. A
  33. B
  34. C
  35. python crunpy 1 2 $(cat wordlist.txt)
  36. cat
  37. dog
  38. hat
  39. catcat
  40. catdog
  41. cathat
  42. dogcat
  43. dogdog
  44. doghat
  45. hatcat
  46. hatdog
  47. hathat