1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:26:01 +02:00

strip-nondeterminism: add page (#4647)

This commit is contained in:
Juri 2020-10-12 23:37:54 +02:00 committed by GitHub
parent ddfda0d6b8
commit 8740bbc2bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
# strip-nondeterminism
> A tool to remove non-deterministic information (e.g. timestamps) from files.
> More information: <https://salsa.debian.org/reproducible-builds/strip-nondeterminism>.
- Strip nondeterministic information from a file:
`strip-nondeterminism {{path/to/file}}`
- Strip nondeterministic information from a file manually specifying the filetype:
`strip-nondeterminism --type {{filetype}} {{path/to/file}}`
- Strip nondeterministic information from a file; instead of removing timestamps set them to the specified UNIX timestamp:
`strip-nondeterminism --timestamp {{unix_timestamp}} {{path/to/file}}`