Show HN: I created a useful hacker tool that helps you to send large files

This program files can divide one fat file into small ones. Then you can send them through any service like Telegram or smth and after that cumbine them. You can also compare this two file if you dont belive that them are identical.

github.com

2 points

Gazmanov

a day ago


2 comments

mtmail 21 hours ago

Similar with standard Unix tools:

   split -b 1G bigfile.bin bigfile-parts
   cat bigfile-parts* > bigfile2.bin
   md5sum bigfile.bin bigfile2.bin
   37c58141654fd66d9efb73b8a33177b6  bigfile.bin
   37c58141654fd66d9efb73b8a33177b6  bigfile2.bin