azlux / log2ram

ramlog like for systemd (Put log into a ram folder)
MIT License
2.62k stars 193 forks source link

[DOC] small change in manual install script #181

Closed edgd1er closed 2 years ago

edgd1er commented 2 years ago

thanks for your project

the install step seems to need i little update, as the file is compressed a -z is required in the tar.

curl -Lo log2ram.tar.gz https://github.com/azlux/log2ram/archive/master.tar.gz
tar xf log2ram.tar.gz
.....

To avoid a file write, keep the file in memory, here is my suggestion

curl -L https://github.com/azlux/log2ram/archive/master.tar.gz | tar zxf -
....
azlux commented 2 years ago

thank