]> Dogcows Code - chaz/tar/blob - append.sh
af90f04232bb6793ce135bc15f89cdfefa06bb88
[chaz/tar] / append.sh
1 #! /bin/sh
2 # Append was just not working.
3
4 . ./preset
5 . $srcdir/before
6
7 set -e
8 touch file1
9 touch file2
10 tar cf archive file1
11 tar rf archive file2
12 tar tf archive
13
14 out="\
15 file1
16 file2
17 "
18
19 . $srcdir/after
This page took 0.032277 seconds and 3 git commands to generate.