2 lines
142 B
Bash
Executable file
2 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
find -type f -regex ".*.go\|.*.html\|.*.sh\|.*.txt\|.*.md\|.*LICENSE.*\|.*Makefile.*" -print0 | tar cfvJ code.tar.xz --null -T -
|