Zipping is the method I always resort to in absence of a crc32 command, as zip/unzip are usually available everywhere:
Code: Select all
zip p5a.zip p5a
unzip -v p5a.zip
Zipping is the method I always resort to in absence of a crc32 command, as zip/unzip are usually available everywhere:
Code: Select all
zip p5a.zip p5a
unzip -v p5a.zip
pgimeno wrote: ↑Tue Jul 30, 2024 8:31 amZipping is the method I always resort to in absence of a crc32 command, as zip/unzip are usually available everywhere:
Code: Select all
zip p5a.zip p5a unzip -v p5a.zip
Great Tip! It never crossed my mind.