Calculate the MD5 of INPUT files in bulk.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 750B

il y a 4 ans
il y a 4 ans
il y a 4 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # README.md
  2. > Author: Yaqing Liu
  3. >
  4. > Email: [yaqing.liu@outlook.com](mailto:yaqing.liu@outlook.com)
  5. >
  6. > Last Updates: 08/04/2021
  7. This app generates the MD5 of the INPUT files in bulk.
  8. The OUTPUT.md5 file consists of n rows and 2 columns, the first column is the MD5 code and the second column is the corresponding file name.
  9. #### Requirements
  10. - choppy
  11. - Ali-Cloud
  12. - Linux
  13. #### Usage
  14. ```Shell
  15. # Install
  16. choppy install YaqingLiu/MD5
  17. # Prepare the input file: samples.json
  18. # Submit your task
  19. choppy batch YaqingLiu/MD5-latest samples.json -p project_name
  20. ```
  21. #### Input
  22. Please note that the input file is in JSON format.
  23. ```Json
  24. {
  25. "sample_id": "sample_id",
  26. "INPUT": [
  27. "file_1",
  28. "file_2",
  29. "file_3",
  30. ...,
  31. "file_n"]
  32. }
  33. ```