Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/bash
#
# usage: targrep.sh pattern tarfile
#
mkdir /tmp/untar
tar -xf $2 -C /tmp/untar
grep -R $1 /tmp/untar
rm -rf /tmp/untar
$ strings bits.tar | grep include
#include <stdio.h>
#include <error.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>