<?xml version="1.0" encoding="UTF-8"?>
<metadata>
  <identifier>dc14f4d0f9ec8ec66cc9e5b70365de</identifier>
  <mediatype>software</mediatype>
  <collection>open_source_software</collection>
  <collection>community</collection>
  <description>These files were stored at the following locations according to Linux: &lt;pre&gt;[...]$ lsblk --ascii&lt;br /&gt;NAME   [...]&lt;br /&gt;[...]&lt;br /&gt;sdd      [...] disk&lt;br /&gt;`-sdd1   [...] part /mnt/e&lt;br /&gt;[...] fdisk -l "/dev/sdd"&lt;br /&gt;Disk /dev/sdd: 4.56 TiB, 5000947302400 bytes, 9767475200 sectors&lt;br /&gt;Disk model: easystore 2647  &lt;br /&gt;Units: [...] 512 bytes&lt;br /&gt;Sector size (logical/physical): 512 bytes / 4096 bytes&lt;br /&gt;I/O size (minimum/optimal): 4096 bytes / 4096 bytes&lt;br /&gt;Disklabel type: gpt&lt;br /&gt;Disk identifier: F5ADF490-B4F4-44CA-A1C0-713FD7D1DD2F&lt;br /&gt;&lt;br /&gt;Device     Start        End    Sectors  Size Type&lt;br /&gt;/dev/sdd1   2048 9767473151 9767471104  4.6T Microsoft basic data&lt;/pre&gt; &amp;gt;&lt;br /&gt;* "/mnt/e/dl/0eb8012/crc32" - text file&lt;br /&gt;* "/mnt/e/dl/0eb8012/crc32new.txt" - new&lt;br /&gt;&lt;br /&gt;These files were stored at the following locations according to Windows: "Volume in drive G is easystore \ Volume Serial Number is 3224-80C8" &amp;gt;&lt;br /&gt;* "G:\dl\0eb8012\crc32" - plain text file&lt;br /&gt;* "G:\dl\0eb8012\crc32new.txt" - TXT file&lt;br /&gt;&lt;br /&gt;SYNOPSIS&lt;br /&gt; crc32 [OPTION] [FILE]...&lt;br /&gt;&lt;br /&gt;I improved crc32 (file "/usr/bin/crc32" from libarchive-zip-perl). Why:&lt;br /&gt;* Can have unexpected stuff in stdout:&lt;br /&gt;** https://salsa.debian.org/perl-team/modules/packages/libarchive-zip-perl/-/blob/master/script/crc32&lt;br /&gt;** https://salsa.debian.org/perl-team/modules/packages/libarchive-zip-perl/-/raw/master/script/crc32&lt;br /&gt;* Patched, no longer weird. Added the option "-c" / "--check":&lt;br /&gt;** https://pastebin.com/sACs5LyB&lt;br /&gt;** https://u.smutty.horse/mjrotxsitae.bin&lt;br /&gt;** (Does not work as "crc32 [FILE]... [OPTION]".)&lt;br /&gt;&lt;br /&gt;Contents of one of the multiple plain text files via cat and xxd:&lt;br /&gt;&lt;pre&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ h1=/mnt/e/dl/0eb8012/crc32new.txt&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ cat "$h1"&lt;br /&gt;#!/usr/bin/perl&lt;br /&gt;&lt;br /&gt;# Computes and prints to stdout the CRC-32 values of the given files&lt;br /&gt;&lt;br /&gt;use 5.006;&lt;br /&gt;use strict;&lt;br /&gt;use lib qw( blib/lib lib );&lt;br /&gt;use Archive::Zip;&lt;br /&gt;use FileHandle;&lt;br /&gt;&lt;br /&gt;use vars qw( $VERSION );&lt;br /&gt;BEGIN {&lt;br /&gt;    $VERSION = '1.51';&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;my $checkFiles;&lt;br /&gt;if ( @ARGV[0] eq '--check' || @ARGV[0] eq '-c' ) {&lt;br /&gt;    $checkFiles = 1;&lt;br /&gt;    splice @ARGV, 0, 1;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;my $totalFiles = scalar(@ARGV);&lt;br /&gt;foreach my $file (@ARGV) {&lt;br /&gt;    if ( -d $file ) {&lt;br /&gt;        warn "$0: ${file}: Is a directory\n";&lt;br /&gt;        next;&lt;br /&gt;    }&lt;br /&gt;    my $fh = FileHandle-&amp;gt;new();&lt;br /&gt;    if ( !$fh-&amp;gt;open( $file, 'r' ) ) {&lt;br /&gt;        warn "$0: Cannot open $file: $!\n";&lt;br /&gt;        next;&lt;br /&gt;    }&lt;br /&gt;    binmode($fh);&lt;br /&gt;    my $buffer;&lt;br /&gt;    my $bytesRead;&lt;br /&gt;    my $crc = 0;&lt;br /&gt;    while ( $bytesRead = $fh-&amp;gt;read( $buffer, 32768 ) ) {&lt;br /&gt;        $crc = Archive::Zip::computeCRC32( $buffer, $crc );&lt;br /&gt;    }&lt;br /&gt;    my $fileCrc = sprintf("%08x", $crc);&lt;br /&gt;    printf("$fileCrc");&lt;br /&gt;    print("\t$file") if ( $totalFiles &amp;gt; 1 );&lt;br /&gt;&lt;br /&gt;    if ( $checkFiles eq 1 ) {&lt;br /&gt;        if ( $file =~ /[^[:xdigit:]]([[:xdigit:]]{8})[^[:xdigit:]]/ ) {&lt;br /&gt;           my $filenameCrc = $1;&lt;br /&gt;           if ( lc($filenameCrc) eq lc($fileCrc) ) {&lt;br /&gt;               print("\tOK")&lt;br /&gt;           } else {&lt;br /&gt;               print("\tBAD $fileCrc != $filenameCrc");&lt;br /&gt;           }&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    print("\n");&lt;br /&gt;}&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ xxd -ps "$h1"&lt;br /&gt;23212f7573722f62696e2f7065726c0a0a2320436f6d707574657320616e&lt;br /&gt;64207072696e747320746f207374646f757420746865204352432d333220&lt;br /&gt;76616c756573206f662074686520676976656e2066696c65730a0a757365&lt;br /&gt;20352e3030363b0a757365207374726963743b0a757365206c6962207177&lt;br /&gt;2820626c69622f6c6962206c696220293b0a75736520417263686976653a&lt;br /&gt;3a5a69703b0a7573652046696c6548616e646c653b0a0a75736520766172&lt;br /&gt;7320717728202456455253494f4e20293b0a424547494e207b0a20202020&lt;br /&gt;2456455253494f4e203d2027312e3531273b0a7d0a0a6d79202463686563&lt;br /&gt;6b46696c65733b0a696620282040415247565b305d20657120272d2d6368&lt;br /&gt;65636b27207c7c2040415247565b305d20657120272d63272029207b0a20&lt;br /&gt;20202024636865636b46696c6573203d20313b0a2020202073706c696365&lt;br /&gt;2040415247562c20302c20313b0a7d0a0a6d792024746f74616c46696c65&lt;br /&gt;73203d207363616c6172284041524756293b0a666f7265616368206d7920&lt;br /&gt;2466696c652028404152475629207b0a2020202069662028202d64202466&lt;br /&gt;696c652029207b0a20202020202020207761726e202224303a20247b6669&lt;br /&gt;6c657d3a2049732061206469726563746f72795c6e223b0a202020202020&lt;br /&gt;20206e6578743b0a202020207d0a202020206d7920246668203d2046696c&lt;br /&gt;6548616e646c652d3e6e657728293b0a202020206966202820212466682d&lt;br /&gt;3e6f70656e28202466696c652c2027722720292029207b0a202020202020&lt;br /&gt;20207761726e202224303a2043616e6e6f74206f70656e202466696c653a&lt;br /&gt;2024215c6e223b0a20202020202020206e6578743b0a202020207d0a2020&lt;br /&gt;202062696e6d6f646528246668293b0a202020206d792024627566666572&lt;br /&gt;3b0a202020206d7920246279746573526561643b0a202020206d79202463&lt;br /&gt;7263203d20303b0a202020207768696c6520282024627974657352656164&lt;br /&gt;203d202466682d3e726561642820246275666665722c2033323736382029&lt;br /&gt;2029207b0a202020202020202024637263203d20417263686976653a3a5a&lt;br /&gt;69703a3a636f6d7075746543524333322820246275666665722c20246372&lt;br /&gt;6320293b0a202020207d0a202020206d79202466696c65437263203d2073&lt;br /&gt;7072696e7466282225303878222c2024637263293b0a202020207072696e&lt;br /&gt;746628222466696c6543726322293b0a202020207072696e7428225c7424&lt;br /&gt;66696c65222920696620282024746f74616c46696c6573203e203120293b&lt;br /&gt;0a0a20202020696620282024636865636b46696c65732065712031202920&lt;br /&gt;7b0a202020202020202069662028202466696c65203d7e202f5b5e5b3a78&lt;br /&gt;64696769743a5d5d285b5b3a7864696769743a5d5d7b387d295b5e5b3a78&lt;br /&gt;64696769743a5d5d2f2029207b0a20202020202020202020206d79202466&lt;br /&gt;696c656e616d65437263203d2024313b0a20202020202020202020206966&lt;br /&gt;2028206c63282466696c656e616d6543726329206571206c63282466696c&lt;br /&gt;65437263292029207b0a2020202020202020202020202020207072696e74&lt;br /&gt;28225c744f4b22290a20202020202020202020207d20656c7365207b0a20&lt;br /&gt;20202020202020202020202020207072696e7428225c7442414420246669&lt;br /&gt;6c6543726320213d202466696c656e616d6543726322293b0a2020202020&lt;br /&gt;2020202020207d0a20202020202020207d0a202020207d0a0a2020202070&lt;br /&gt;72696e7428225c6e22293b0a7d0a&lt;/pre&gt;&lt;br /&gt;cp copying log:&lt;br /&gt;&lt;pre&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ stat /mnt/e/dl/0eb8012; stat -t /mnt/e/dl/0eb8012; date; cp /usr/bin/crc32 /mnt/e/dl/0eb8012/crc32; date; stat /mnt/e/dl/0eb8012; stat -t /mnt/e/dl/0eb8012&lt;br /&gt;  File: /mnt/e/dl/0eb8012&lt;br /&gt;  Size: 4096      	Blocks: 8          IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1358        Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 07:40:17.180101400 -0600&lt;br /&gt;Modify: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt;Change: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt; Birth: -&lt;br /&gt;/mnt/e/dl/0eb8012 4096 8 41ff 0 0 831 1358 1 0 0 1665668417 1665668485 1665668485 0 4096&lt;br /&gt;Thu, 13 Oct 2022 13:42:17 +0000&lt;br /&gt;Thu, 13 Oct 2022 13:42:17 +0000&lt;br /&gt;  File: /mnt/e/dl/0eb8012&lt;br /&gt;  Size: 4096      	Blocks: 8          IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1358        Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 07:40:17.180101400 -0600&lt;br /&gt;Modify: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt;Change: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt; Birth: -&lt;br /&gt;/mnt/e/dl/0eb8012 4096 8 41ff 0 0 831 1358 1 0 0 1665668417 1665668485 1665668485 0 4096&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$&lt;/pre&gt;&lt;br /&gt;Hashes of these regular files via sed, crc32, md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, and b2sum:&lt;br /&gt;&lt;pre&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ h1="/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ attr -l "$h1"&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ hs1&lt;br /&gt;crc32 "$h1" | sed "s/$/\"/g" | sed "s/\\t\//\\t\"\//g"; md5sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha1sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha224sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha256sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha384sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha512sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; b2sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; echo ""&lt;br /&gt;ee0cab78"&lt;br /&gt;1eb75572e52fa6db59191fac86b7f29e  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;33ca4f01832392717e037d68c65dbf0e295a3817  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;422b2e214d176c9a0246ee6f96b3268766355b0d3d867adc6faef372  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;7b7bf04d63e00f5586c2e378e6a897da090c416f71f8f3cfad469f9b2fcaf55f  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;e0751f52e9071e89017c1c0245008bbfa6d6a439b9d3d0f4f197f45bd4053ce4219819d6e2b243a9236ad647eca97f59  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;140efff29d16c41fb07f44269dd6ca25792eaa678d2967bd5bdc0014e18d65696bcf8409d97f379c51696ca4e3f09f29ad19fdd6f6f72bc82ffcd55cea6cb7a6  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;d974bdb6480fd10cb269ea6fd0ab3891073adcce03926e254245ef3878e587508649a4ef9eb3fbe1b6ab9ee7a8a12aa4ad0d23af63d29bddc2eb9806339ae8ad  "/mnt/e/dl/0eb8012/crc32"&lt;br /&gt;&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ h1="/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ attr -l "$h1"&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ hs1&lt;br /&gt;crc32 "$h1" | sed "s/$/\"/g" | sed "s/\\t\//\\t\"\//g"; md5sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha1sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha224sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha256sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha384sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha512sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; b2sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; echo ""&lt;br /&gt;9b6bd13f"&lt;br /&gt;69a392e18df378978db855ae50052ecf  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;ac9064883142afbc3bac6730e21246c3fb66a405  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;1436f99086d3929e64c119a127eaafb5129414695034e3c5337d571c  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;4cfd5d91f1e6159d4644bb5e3bc947b2ea52b3d4d184007e1a06251f0e8b480c  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;fbc5a6f4d6ad8fe749a7d45d134fde107b00914f4bdfc8d06efa45a3941dd50c6994830432d2a0c9fe5261125ba2b990  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;a9f74fad5df088c95cbfc4c0d41231adcd1ec1730d00674465c1900f8e0011a20c8d27b2ed4f2d4ba2d853dfa73ed0df6a26100acda9634f4ca28eda252d0868  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;br /&gt;1bbd2592648155d2abac651ec985a295962371144fc82c7d84eaee6fc2e661a85d9f21b2a628ae696fc9486199ab6b8f3fcbbdc2a31af5dec245b9c3bb381e9c  "/mnt/e/dl/0eb8012/crc32new.txt"&lt;/pre&gt;&lt;br /&gt;Properties of the containing folders and these nonbinary files via exiftool, expr, ls, sed, grep, for, eval, do, echo, stat, xargs, and find:&lt;br /&gt;&lt;pre&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ hs1s&lt;br /&gt;stat "$h1"; stat -t "$h1"; hs1sc=$(expr $(ls -d "$h1" | sed "s/\//\\n/g" | grep -c .) - 1); temp="$h1"; for n in $(eval echo {1.."$hs1sc"}); do temp=$(ls -d "$temp" | sed "s/\/[^\/]\+$//"); echo $temp; done | xargs -d "\n" stat; temp="$h1"; for n in $(eval echo {1.."$hs1sc"}); do temp=$(ls -d "$temp" | sed "s/\/[^\/]\+$//"); echo $temp; done | xargs -d "\n" stat -t; stat /; stat -t /&lt;br /&gt;  File: /mnt/e/dl/0eb8012/crc32new.txt&lt;br /&gt;  Size: 1274      	Blocks: 8          IO Block: 4096   regular file&lt;br /&gt;Device: 831h/2097d	Inode: 755506      Links: 1&lt;br /&gt;Access: (0777/-rwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 07:35:20.678116600 -0600&lt;br /&gt;Modify: 2022-10-13 07:35:15.267034900 -0600&lt;br /&gt;Change: 2022-10-13 07:35:15.598160800 -0600&lt;br /&gt; Birth: -&lt;br /&gt;/mnt/e/dl/0eb8012/crc32new.txt 1274 8 81ff 0 0 831 755506 1 0 0 1665668120 1665668115 1665668115 0 4096&lt;br /&gt;  File: /mnt/e/dl/0eb8012&lt;br /&gt;  Size: 4096      	Blocks: 8          IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1358        Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 07:40:17.180101400 -0600&lt;br /&gt;Modify: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt;Change: 2022-10-13 07:41:25.641513700 -0600&lt;br /&gt; Birth: -&lt;br /&gt;  File: /mnt/e/dl&lt;br /&gt;  Size: 110592    	Blocks: 216        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1247        Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-04 19:01:29.528039600 -0600&lt;br /&gt;Modify: 2022-10-04 19:01:26.978089400 -0600&lt;br /&gt;Change: 2022-10-04 19:01:26.978089400 -0600&lt;br /&gt; Birth: -&lt;br /&gt;  File: /mnt/e&lt;br /&gt;  Size: 4096      	Blocks: 8          IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 5           Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-25 12:21:58.135854700 -0600&lt;br /&gt;Modify: 2022-09-25 12:21:28.045005300 -0600&lt;br /&gt;Change: 2022-09-25 12:21:28.045005300 -0600&lt;br /&gt; Birth: -&lt;br /&gt;  File: /mnt&lt;br /&gt;  Size: 4096      	Blocks: 8          IO Block: 4096   directory&lt;br /&gt;Device: 805h/2053d	Inode: 917505      Links: 8&lt;br /&gt;Access: (0755/drwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 06:07:32.540553375 -0600&lt;br /&gt;Modify: 2022-06-27 20:35:46.946594243 -0600&lt;br /&gt;Change: 2022-06-27 20:35:46.946594243 -0600&lt;br /&gt; Birth: 2021-12-20 18:44:15.533471518 -0700&lt;br /&gt;/mnt/e/dl/0eb8012 4096 8 41ff 0 0 831 1358 1 0 0 1665668417 1665668485 1665668485 0 4096&lt;br /&gt;/mnt/e/dl 110592 216 41ff 0 0 831 1247 1 0 0 1664931689 1664931686 1664931686 0 4096&lt;br /&gt;/mnt/e 4096 8 41ff 0 0 831 5 1 0 0 1664130118 1664130088 1664130088 0 4096&lt;br /&gt;/mnt 4096 8 41ed 0 0 805 917505 8 0 0 1665662852 1656383746 1656383746 1640051055 4096&lt;br /&gt;  File: /&lt;br /&gt;  Size: 12288     	Blocks: 24         IO Block: 4096   directory&lt;br /&gt;Device: 805h/2053d	Inode: 2           Links: 19&lt;br /&gt;Access: (0755/drwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 06:07:29.748530848 -0600&lt;br /&gt;Modify: 2022-09-25 06:16:36.042223141 -0600&lt;br /&gt;Change: 2022-09-25 06:16:36.042223141 -0600&lt;br /&gt; Birth: 2021-12-20 18:43:57.000000000 -0700&lt;br /&gt;/ 12288 24 41ed 0 0 805 2 19 0 0 1665662849 1664108196 1664108196 1640051037 4096&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ exiftool "$h1"&lt;br /&gt;ExifTool Version Number         : 12.40&lt;br /&gt;File Name                       : crc32new.txt&lt;br /&gt;Directory                       : /mnt/e/dl/0eb8012&lt;br /&gt;File Size                       : 1274 bytes&lt;br /&gt;File Modification Date/Time     : 2022:10:13 07:35:15-06:00&lt;br /&gt;File Access Date/Time           : 2022:10:13 07:35:20-06:00&lt;br /&gt;File Inode Change Date/Time     : 2022:10:13 07:35:15-06:00&lt;br /&gt;File Permissions                : -rwxrwxrwx&lt;br /&gt;File Type                       : TXT&lt;br /&gt;File Type Extension             : txt&lt;br /&gt;MIME Type                       : text/plain&lt;br /&gt;MIME Encoding                   : us-ascii&lt;br /&gt;Newlines                        : Unix LF&lt;br /&gt;Line Count                      : 56&lt;br /&gt;Word Count                      : 180&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ h1=/usr/bin/crc32&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ hs1&lt;br /&gt;crc32 "$h1" | sed "s/$/\"/g" | sed "s/\\t\//\\t\"\//g"; md5sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha1sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha224sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha256sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha384sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; sha512sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; b2sum "$h1" | sed "s/$/\"/g" | sed "s/\x20\x20\//\x20\x20\"\//g"; echo ""&lt;br /&gt;ee0cab78"&lt;br /&gt;1eb75572e52fa6db59191fac86b7f29e  "/usr/bin/crc32"&lt;br /&gt;33ca4f01832392717e037d68c65dbf0e295a3817  "/usr/bin/crc32"&lt;br /&gt;422b2e214d176c9a0246ee6f96b3268766355b0d3d867adc6faef372  "/usr/bin/crc32"&lt;br /&gt;7b7bf04d63e00f5586c2e378e6a897da090c416f71f8f3cfad469f9b2fcaf55f  "/usr/bin/crc32"&lt;br /&gt;e0751f52e9071e89017c1c0245008bbfa6d6a439b9d3d0f4f197f45bd4053ce4219819d6e2b243a9236ad647eca97f59  "/usr/bin/crc32"&lt;br /&gt;140efff29d16c41fb07f44269dd6ca25792eaa678d2967bd5bdc0014e18d65696bcf8409d97f379c51696ca4e3f09f29ad19fdd6f6f72bc82ffcd55cea6cb7a6  "/usr/bin/crc32"&lt;br /&gt;d974bdb6480fd10cb269ea6fd0ab3891073adcce03926e254245ef3878e587508649a4ef9eb3fbe1b6ab9ee7a8a12aa4ad0d23af63d29bddc2eb9806339ae8ad  "/usr/bin/crc32"&lt;br /&gt;&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ stat "$h1"&lt;br /&gt;  File: /usr/bin/crc32&lt;br /&gt;  Size: 1062      	Blocks: 8          IO Block: 4096   regular file&lt;br /&gt;Device: 805h/2053d	Inode: 1327279     Links: 1&lt;br /&gt;Access: (0755/-rwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-10-13 06:31:33.620874265 -0600&lt;br /&gt;Modify: 2020-03-14 06:52:14.000000000 -0600&lt;br /&gt;Change: 2022-09-25 03:32:41.660659156 -0600&lt;br /&gt; Birth: 2022-09-25 03:32:41.544655299 -0600&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ stat -t "$h1"&lt;br /&gt;/usr/bin/crc32 1062 8 81ed 0 0 805 1327279 1 0 0 1665664293 1584190334 1664098361 1664098361 4096&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/$ exiftool "$h1"&lt;br /&gt;ExifTool Version Number         : 12.40&lt;br /&gt;File Name                       : crc32&lt;br /&gt;Directory                       : /usr/bin&lt;br /&gt;File Size                       : 1062 bytes&lt;br /&gt;File Modification Date/Time     : 2020:03:14 06:52:14-06:00&lt;br /&gt;File Access Date/Time           : 2022:10:13 06:31:33-06:00&lt;br /&gt;File Inode Change Date/Time     : 2022:09:25 03:32:41-06:00&lt;br /&gt;File Permissions                : -rwxr-xr-x&lt;br /&gt;File Type                       : perl script&lt;br /&gt;File Type Extension             : pl&lt;br /&gt;MIME Type                       : text/x-perl&lt;/pre&gt;&lt;br /&gt;See also:&lt;br /&gt;* https://archive.org/details/dc14f4d0f9ec8ec66cc9e5b70365de (this item)&lt;br /&gt;** linked to https://archive.org/details/youtube-rClYSH9Cuu8&lt;br /&gt;* https://archive.org/details/youtube-sGxw7ipTrq8 - other upload of mine, shows a pony&lt;br /&gt;** related:&lt;br /&gt;*** My Little Pony-related download log:&lt;pre&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/mnt/My_Passport/1/0$ stat .; stat -t .; TZ=UTC wget https://pony.tube/download/videos/1dd734e6-a66e-49a5-881b-9258c914fe20-1080.mp4; stat .; stat -t .&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 01:04:22.775589400 -0600&lt;br /&gt;Change: 2022-09-29 01:04:22.775589400 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664435062 1664435062 0 4096&lt;br /&gt;--2022-09-30 00:01:21--  https://pony.tube/download/videos/1dd734e6-a66e-49a5-881b-9258c914fe20-1080.mp4&lt;br /&gt;Resolving pony.tube (pony.tube)... 135.148.34.140, 2604:2dc0:100:318c::def&lt;br /&gt;Connecting to pony.tube (pony.tube)|135.148.34.140|:443... connected.&lt;br /&gt;HTTP request sent, awaiting response... 200 OK&lt;br /&gt;Length: 494447827 (472M) [video/mp4]&lt;br /&gt;Saving to: ‘1dd734e6-a66e-49a5-881b-9258c914fe20-1080.mp4’&lt;br /&gt;&lt;br /&gt;1dd734e6-a66e-49a5-881b-9258c914fe20- 100%[=======================================================================&amp;gt;] 471.54M  10.3MB/s    in 47s     &lt;br /&gt;&lt;br /&gt;2022-09-30 00:02:09 (10.0 MB/s) - ‘1dd734e6-a66e-49a5-881b-9258c914fe20-1080.mp4’ saved [494447827/494447827]&lt;br /&gt;&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 18:01:22.165290800 -0600&lt;br /&gt;Change: 2022-09-29 18:01:22.165290800 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664496082 1664496082 0 4096&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/mnt/My_Passport/1/0$ &lt;br /&gt;[&lt;br /&gt;----&lt;br /&gt;]&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/mnt/My_Passport/1/0$ stat .; stat -t .; TZ=UTC wget https://pony.tube/download/torrents/1dd734e6-a66e-49a5-881b-9258c914fe20-720.torrent; stat .; stat -t .&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 18:01:22.165290800 -0600&lt;br /&gt;Change: 2022-09-29 18:01:22.165290800 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664496082 1664496082 0 4096&lt;br /&gt;--2022-09-30 00:04:12--  https://pony.tube/download/torrents/1dd734e6-a66e-49a5-881b-9258c914fe20-720.torrent&lt;br /&gt;Resolving pony.tube (pony.tube)... 135.148.34.140, 2604:2dc0:100:318c::def&lt;br /&gt;Connecting to pony.tube (pony.tube)|135.148.34.140|:443... connected.&lt;br /&gt;HTTP request sent, awaiting response... 200 OK&lt;br /&gt;Length: 22701 (22K) [application/x-bittorrent]&lt;br /&gt;Saving to: ‘1dd734e6-a66e-49a5-881b-9258c914fe20-720.torrent’&lt;br /&gt;&lt;br /&gt;1dd734e6-a66e-49a5-881b-9258c914fe20- 100%[=======================================================================&amp;gt;]  22.17K  --.-KB/s    in 0.001s  &lt;br /&gt;&lt;br /&gt;2022-09-30 00:04:13 (18.8 MB/s) - ‘1dd734e6-a66e-49a5-881b-9258c914fe20-720.torrent’ saved [22701/22701]&lt;br /&gt;&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 18:04:13.246969600 -0600&lt;br /&gt;Change: 2022-09-29 18:04:13.246969600 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664496253 1664496253 0 4096&lt;br /&gt;ubuntu@ubuntu-HP-Laptop-14-bw0xx:/mnt/My_Passport/1/0$ stat .; stat -t .; TZ=UTC wget https://pony.tube/download/torrents/1dd734e6-a66e-49a5-881b-9258c914fe20-1080.torrent; stat .; stat -t .&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 18:04:13.246969600 -0600&lt;br /&gt;Change: 2022-09-29 18:04:13.246969600 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664496253 1664496253 0 4096&lt;br /&gt;--2022-09-30 00:04:34--  https://pony.tube/download/torrents/1dd734e6-a66e-49a5-881b-9258c914fe20-1080.torrent&lt;br /&gt;Resolving pony.tube (pony.tube)... 135.148.34.140, 2604:2dc0:100:318c::def&lt;br /&gt;Connecting to pony.tube (pony.tube)|135.148.34.140|:443... connected.&lt;br /&gt;HTTP request sent, awaiting response... 200 OK&lt;br /&gt;Length: 19323 (19K) [application/x-bittorrent]&lt;br /&gt;Saving to: ‘1dd734e6-a66e-49a5-881b-9258c914fe20-1080.torrent’&lt;br /&gt;&lt;br /&gt;1dd734e6-a66e-49a5-881b-9258c914fe20- 100%[=======================================================================&amp;gt;]  18.87K  --.-KB/s    in 0.003s  &lt;br /&gt;&lt;br /&gt;2022-09-30 00:04:34 (5.46 MB/s) - ‘1dd734e6-a66e-49a5-881b-9258c914fe20-1080.torrent’ saved [19323/19323]&lt;br /&gt;&lt;br /&gt;  File: .&lt;br /&gt;  Size: 393216    	Blocks: 768        IO Block: 4096   directory&lt;br /&gt;Device: 831h/2097d	Inode: 1297930     Links: 1&lt;br /&gt;Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)&lt;br /&gt;Access: 2022-09-29 02:04:13.280531100 -0600&lt;br /&gt;Modify: 2022-09-29 18:04:34.941781200 -0600&lt;br /&gt;Change: 2022-09-29 18:04:34.941781200 -0600&lt;br /&gt; Birth: -&lt;br /&gt;. 393216 768 41ff 0 0 831 1297930 1 0 0 1664438653 1664496274 1664496274 0 4096&lt;/pre&gt;&lt;br /&gt;identifier basically from stdout of "lubuntu@lubuntu:[/home/lubuntu/Downloads/7714900]$ find -type d | gzip --stdout -f", 63</description>
  <language>eng</language>
  <scanner>Internet Archive HTML5 Uploader 1.7.0</scanner>
  <subject>improved version; crc32; libarchive-zip-perl; /usr/bin/crc32; /bin/crc32; usr bin crc32; bin crc32; English text; libarchive zip perl; script</subject>
  <subject>perl; Perl script; Linux; GNU/Linux; GNU Linux; Linux software; CRC-32; checksums; checksum; CRC 32; crc32 (script); improved; edit</subject>
  <title>Improved version of crc32 from libarchive-zip-perl</title>
  <uploader>leedusmcclein@gmail.com</uploader>
  <publicdate>2022-10-13 13:41:10</publicdate>
  <addeddate>2022-10-13 13:41:10</addeddate>
  <curation>[curator]validator@archive.org[/curator][date]20221013134634[/date][comment]checked for malware[/comment]</curation>
</metadata>
