-
Notifications
You must be signed in to change notification settings - Fork 0
/
spor.1.txt
31 lines (23 loc) · 931 Bytes
/
spor.1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
NAME
spor - store file modes (permission/ownership) recursively
SYNOPSIS
spor [-hv] [-s file] [-r file] [-d file] <dirpath>
DESCRIPTION
spor store file modes (permission/ownership) recursively
It recursively walks into a given directory, storing
file mode & ownership information in a flat-file database
for future retrievals. It was firstly intended to use
with backup/rcs scripts.
OPTIONS
-h --help Display a help text.
-d --dump <file> List the <file> content.
-r --restore <file> Retore file mode info from <file>.
-s --store <file> Store file mode info to <file>.
-v --verbose Do all operations verbosely.
EXAMPLE
- Store all /foodir information to /tmp/foo.spor
$ spor --store /tmp/foo.spor /foodir
- Retrieve all /foodir information from /tmp/foo.spor
$ spor --restore /tmp/foo.spor /foodir
AUTHOR
Rafael Aquini <[email protected]>