diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-12-22 11:26:00 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-12-22 11:26:00 +0000 |
| commit | 37199fe7cfbddd23c02473d377daf1e1d4676a8f (patch) | |
| tree | 75baa9144b1ebaa3f745d37ffb72e169fdbe75c0 /gnu/usr.bin | |
| parent | ebc2742491536319276bd9b1fce68ca5b3f99b77 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/tar/tar.1 | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/tar/tar.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/tar/tar.1 b/gnu/usr.bin/tar/tar.1 index 2b743c6a4efd..8e977eafd899 100644 --- a/gnu/usr.bin/tar/tar.1 +++ b/gnu/usr.bin/tar/tar.1 @@ -291,6 +291,8 @@ Exclude files matching the Exclude files listed in .Ar file . .It Fl y +.It Fl I +.It Fl -bzip .It Fl -bzip2 .It Fl -bunzip2 Filter the archive through diff --git a/gnu/usr.bin/tar/tar.c b/gnu/usr.bin/tar/tar.c index 31bbe96dc982..7fb54f81f440 100644 --- a/gnu/usr.bin/tar/tar.c +++ b/gnu/usr.bin/tar/tar.c @@ -171,6 +171,7 @@ struct option long_options[] = {"compress", 0, 0, 'Z'}, {"uncompress", 0, 0, 'Z'}, {"block-compress", 0, &f_compress_block, 1}, + {"bzip", 0, 0, 'y'}, {"bzip2", 0, 0, 'y'}, {"bunzip2", 0, 0, 'y'}, {"gzip", 0, 0, 'z'}, @@ -319,7 +320,7 @@ options (argc, argv) /* Parse options */ while ((c = getoldopt (argc, argv, - "-01234567Ab:BcC:df:F:g:GhikK:lL:mMnN:oOpPrRsStT:uvV:wWxX:yzZ", + "-01234567Ab:BcC:df:F:g:GhiIkK:lL:mMnN:oOpPrRsStT:uvV:wWxX:yzZ", long_options, &ind)) != EOF) { switch (c) @@ -640,6 +641,7 @@ options (argc, argv) add_exclude_file (optarg); break; + case 'I': case 'y': if (f_compressprog) { |
