8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -x
|
||
|
|
||
|
( cd doc && make )
|
||
|
|
||
|
tar cv --exclude-from=.tarignore . | xz > ~/master-thesis.tar.xz
|