Skip to content

Commit d55afaa

Browse files
committed
README: fix title levels
1 parent a716a6a commit d55afaa

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This is my version of brkirch's afsctool
1+
# RJVB's fork of of brkirch's afsctool
22

33
> AFSC (Apple File System Compression) tool is a utility that can be used
44
to apply HFS+ compression to file(s), decompress HFS+ compressed file(s), or
@@ -15,7 +15,6 @@ I have made several modifications, mostly concerning the compression feature:
1515
temporarily. No error checking is done for this feature; failure will lead to
1616
errors that are already caught.
1717

18-
1918
The main new feature that justifies the version bump, however, is the parallel
2019
processing feature, allowing the user to specify an arbitray (though positive :))
2120
number of threads that will compress the specified files in parallel.
@@ -27,6 +26,7 @@ This feature has two modes that each perform best in specific conditions:
2726
state disks, file collections that reside on different disks or collections with
2827
files of different sizes (including notably very large files). This mode is
2928
selected with the -J option.
29+
3030
The performance difference is never enormous in my testing, but YMMV.
3131

3232
Interestingly, the optimum performance (on large collections) is not necessarily
@@ -59,21 +59,20 @@ mode adopts the approach also used for LZVN compression, where the memory buffer
5959
as needed and thus only gets as large as needed (typically 4-5x smaller than in the singleshot
6060
mode). Singleshot mode might be marginally faster when enough RAM is available.
6161

62-
63-
### Installation
62+
# Installation
6463

6564
afsctool depends on zlib (v1.2.8 or newer) and Google's sparsehash library and on CMake
6665
and pkgconfig for building. The OS zlib copy may be recent enough (it is on 10.12 and later) but to be
6766
certain to obtain the latest versions of both, use a package manager like MacPorts, Fink
6867
or HomeBrew. Be sure to follow the general installation and usage instructions for those
6968
projects, in particular how to update your PATH.
7069

71-
# using MacPorts:
70+
## Using MacPorts:
7271
```shell
7372
port install sparsehash zlib cmake pkgconfig
7473
```
7574

76-
# using HomeBrew:
75+
## Using HomeBrew:
7776
```shell
7877
brew install google-sparsehash zlib cmake pkgconfig
7978
PKG_CONFIG_PATH=/usr/local/opt/zlib/lib/pkgconfig

0 commit comments

Comments
 (0)