mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 08:38:26 +02:00
12 lines
216 B
Bash
Executable File
12 lines
216 B
Bash
Executable File
#!/bin/bash -ex
|
|
#
|
|
# helper script to put things into place
|
|
#
|
|
cp $1.pij data/pij/
|
|
cp $1.stl data/stl/
|
|
mv $1.stl stl/
|
|
mv $1.dxf data/dxf/
|
|
mv $1.txt data/csv/
|
|
mv $1.jpg data/jpg/
|
|
bzip2 -v -9 data/{pij,dxf,stl,csv}/$1.*
|