GitXplorerGitXplorer
b

tarfs-rs

public
1 stars
0 forks
1 issues

Commits

List of commits on branch master.
Verified
30cb30f87129d5c092fd78ca0104d9cde73331a6

try to fix lookup

bbennyz committed 3 years ago
Verified
2499ec347caf91c6568437f63580bfc4f15770a4

add README

bbennyz committed 3 years ago
Verified
e7512d5e8386ddf2ce41de1bdb780259e2050045

initial version!

bbennyz committed 3 years ago
Verified
123f7deaa5376dd52aa267aa1c4289dcb463d008

WIP

bbennyz committed 3 years ago
Verified
5961ac7811d423df12aaee97f19e76c6b33c88d3

fix dependency

bbennyz committed 3 years ago
Verified
c6fa02453912304090ed5646db009434c0d9eddf

Merge pull request #1 from bennyz/add-license-1

bbennyz committed 3 years ago

README

The README file for this repository.

tarfs-rs

A very basic FUSE tarfs implementation, currently only supports listing and traversal without links.

Usage

./target/release/tarfs-rs
error: The following required arguments were not provided:
    <FILE>
    <MOUNT>

USAGE:
    tarfs-rs <FILE> <MOUNT>

Example

$ mkdir -p /a/b/c
$ tar cvf a.tar a
a/
a/b/
a/b/c/
$ mkdir mnt
$ ./target/release/tarfs-rs a.tar mnt
$  tree mnt
mnt
└── a
    └── b
        └── c