{"id":20269008,"url":"https://github.com/patatetom/fuseconcat","last_synced_at":"2025-07-31T04:40:14.237Z","repository":{"id":256781110,"uuid":"138150252","full_name":"patatetom/fuseconcat","owner":"patatetom","description":"concatenate multiple files into a single logical file","archived":false,"fork":false,"pushed_at":"2018-06-21T09:50:32.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-14T05:28:38.719Z","etag":null,"topics":["concatenation","forensic","forensics","fuse","fuse-filesystem","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patatetom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-21T09:37:03.000Z","updated_at":"2023-02-11T09:21:02.000Z","dependencies_parsed_at":"2024-09-13T02:51:44.672Z","dependency_job_id":"3a17fc04-6a27-4c7b-be68-73e8f0e3e374","html_url":"https://github.com/patatetom/fuseconcat","commit_stats":null,"previous_names":["patatetom/fuseconcat"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patatetom%2Ffuseconcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patatetom%2Ffuseconcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patatetom%2Ffuseconcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patatetom%2Ffuseconcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patatetom","download_url":"https://codeload.github.com/patatetom/fuseconcat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241753144,"owners_count":20014252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["concatenation","forensic","forensics","fuse","fuse-filesystem","python"],"created_at":"2024-11-14T12:22:40.264Z","updated_at":"2025-03-03T23:05:39.922Z","avatar_url":"https://github.com/patatetom.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fuseconcat\n\nconcatenate multiple files into a single logical file\n\n```sh\n$ dd if=/dev/urandom bs=1M count=16 \u003e /tmp/test.file\n16+0 records in\n16+0 records out\n16777216 bytes (17 MB, 16 MiB) copied, 0.0844514 s, 199 MB/s\n\n$ split -db 3M /tmp/test.file /tmp/test.files.\n\n$ ls -lgG /tmp/test.file*\n-rw-r--r-- 1 16777216 Jun 21 11:14 /tmp/test.file\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.00\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.01\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.02\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.03\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.04\n-rw-r--r-- 1  1048576 Jun 21 11:14 /tmp/test.files.05\n\n$ python fuseconcat.py\nusage: fuseconcat.py [-h] [--debug] file [file ...] folder\nfuseconcat.py: error: the following arguments are required: file, folder\n\n$ mkdir /tmp/test\n\n$ python fuseconcat.py /tmp/test.files.* /tmp/test/\n\n$ mount | grep /tmp/test\nConcatenate on /tmp/test type fuse (ro,nosuid,nodev,relatime,user_id=1000,group_id=1000,allow_other)\n\n$ ls -lgG /tmp/test*\n-rw-r--r-- 1 16777216 Jun 21 11:14 /tmp/test.file\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.00\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.01\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.02\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.03\n-rw-r--r-- 1  3145728 Jun 21 11:14 /tmp/test.files.04\n-rw-r--r-- 1  1048576 Jun 21 11:14 /tmp/test.files.05\n/tmp/test:\ntotal 0\n-r--r--r-- 1 16777216 Jun 21 11:16 concatenated\n\n$ md5sum /tmp/test.file /tmp/test/concatenated \n68d5d2de47a7f3ac2092dd1d5802ad54  /tmp/test.file\n68d5d2de47a7f3ac2092dd1d5802ad54  /tmp/test/concatenated\n\n$ md5sum /tmp/test.files.00 \u003c( dd if=/tmp/test/concatenated count=6144 status=none )\nf6adc84c52215ef1a07cbcae64a9ab21  /tmp/test.files.00\nf6adc84c52215ef1a07cbcae64a9ab21  /dev/fd/63\n\n$ md5sum /tmp/test.files.01 \u003c( dd if=/tmp/test/concatenated skip=6144 count=6144 status=none )\nb024551324dc1d995c1fde859084f747  /tmp/test.files.01\nb024551324dc1d995c1fde859084f747  /dev/fd/63\n\n$ md5sum /tmp/test.files.05 \u003c( dd if=/tmp/test/concatenated skip=$((6144*5)) status=none )\n88ea81a5bb02941036769a1935b387ae  /tmp/test.files.05\n88ea81a5bb02941036769a1935b387ae  /dev/fd/63\n\n$ fusermount -u /tmp/test\n```\n\n```sh\n$ echo test \u003e /tmp/test.file\n\n$ python fuseconcat.py /tmp/test.file /tmp/test.file /tmp/test.file /tmp/test.file /tmp/test/\n\n$ cat /tmp/test/concatenated \ntest\ntest\ntest\ntest\n\n$ fusermount -u /tmp/test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatatetom%2Ffuseconcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatatetom%2Ffuseconcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatatetom%2Ffuseconcat/lists"}