18 lines
273 B
Bash
18 lines
273 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
XTREEMFS_DIR="$1"
|
||
|
TGZ_ARCHIVE="cpp.tgz"
|
||
|
|
||
|
MOUNT="$PWD"
|
||
|
|
||
|
cd "$XTREEMFS_DIR"
|
||
|
tar czf "${MOUNT}/${TGZ_ARCHIVE}" "cpp" --exclude="build" --exclude="thirdparty"
|
||
|
cd "$MOUNT"
|
||
|
|
||
|
tar zxf "$TGZ_ARCHIVE"
|
||
|
|
||
|
find . -name '*.cpp' >/dev/null
|
||
|
|
||
|
grep -R 'test' . >/dev/null
|