mirror of
https://github.com/balkian/gists.git
synced 2024-11-22 01:32:29 +00:00
This commit is contained in:
commit
ed3b93fb6f
15
example.sh
Normal file
15
example.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
tosend=""
|
||||||
|
for i in *.log; do
|
||||||
|
dir=$(echo $i | awk '{split($1,a,"_"); print a[1]}');
|
||||||
|
if [ ! -d $dir ]; then
|
||||||
|
mkdir $dir;
|
||||||
|
fi;
|
||||||
|
mv $i $dir;
|
||||||
|
tosend="$tosend\n$dir"
|
||||||
|
done
|
||||||
|
for i in $(echo -e $tosend | uniq);do
|
||||||
|
echo Compressing $i
|
||||||
|
tar -zcvf $i.tar.gz $i
|
||||||
|
scp $i.tar.gz user@server
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user