1git-annex-inprogress(1)     General Commands Manual    git-annex-inprogress(1)
2
3
4

NAME

6       git-annex-inprogress - access files while they're being downloaded
7

SYNOPSIS

9       git annex inprogress [path ...]
10

DESCRIPTION

12       This  command  allows accessing the content of an annexed file while it
13       is still being downloaded. It outputs to standard output  the  name  of
14       the temporary file that is being used to download the specified annexed
15       file.
16
17       This can sometimes be used to stream a  file  before  it's  been  fully
18       downloaded, for example:
19
20        git annex get video.mpeg &
21        vlc $(git annex inprogress video.mpeg)
22
23       Of  course if the file is downloading too slowly, the media player will
24       reach the end too soon and not show the whole  thing.  And  of  course,
25       only some file formats can be usefully streamed in this way.
26

OPTIONS

28       [path ..]
29
30              The  files or directories whose partially downloaded content you
31              want to access.
32
33              Note that, when no path is specified, it defaults to  all  files
34              in  the current working directory, and subdirectories, which can
35              take a while to traverse. It's most efficient to specify  a  the
36              file you are interested in, or to use --all
37
38       --all -A
39              Rather  than  specifying  a filename or path, this option can be
40              used to access all files that are currently being downloaded.
41
42       file matching options
43              The git-annex-matching-options(1) can be used to  specify  files
44              to access.
45

EXIT STATUS

47       If  any  of the requested files are not currently being downloaded, the
48       exit status will be 1.
49

SEE ALSO

51       git-annex(1)
52
53       git-annex-get(1)
54

AUTHOR

56       Joey Hess <id@joeyh.name>
57
58                                                       git-annex-inprogress(1)
Impressum