mirror of
https://github.com/ashaduri/gsmartcontrol.git
synced 2026-09-25 05:15:33 +00:00
20 lines
314 B
Bash
Executable File
20 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
|
|
stamp="../gsmartcontrol-`date +%F`"
|
|
echo $stamp
|
|
|
|
mkdir $stamp
|
|
cp -dp * $stamp/
|
|
|
|
rm -f $stamp/*pcs # kdevelop persistent store files
|
|
|
|
cp -a autoconf.m4/ $stamp/
|
|
cp -a data/ $stamp/
|
|
cp -a src/ $stamp/
|
|
cp -a templates/ $stamp/
|
|
# cp -a test-data/ $stamp/
|
|
|
|
tar cvf $stamp.tar $stamp
|
|
bzip2 -9 $stamp.tar
|
|
|