Commit 036d1974 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

Be a bit more picky about files to enclose.

parent a5a88706
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ To trawl through looking for bulletin source distros (using the

```
for f in *.zip; do
  unzip -l $f 2> /dev/null | grep -qi bulletin && echo $f;
  unzip -l $f 2> /dev/null | grep -qi /bulletin && echo $f;
done
```

@@ -39,8 +39,8 @@ copied down the relevant bits of the zip files which I extracted like so:

```
for f in *.zip; do
  unzip -l $f 2> /dev/null | grep -qi bulletin \
    && unzip $f $(unzip -l $f | grep -i bulletin | awk '{print $4}');
  unzip -l $f 2> /dev/null | grep -qi /bulletin \
    && unzip $f $(unzip -l $f | grep -i /bulletin | awk '{print $4}');
done
tar jcf decus.tar.bz2 decus
```