mirror of
https://github.com/sesps/EventBuilder_Skeleton.git
synced 2024-11-10 20:38:51 -05:00
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
RUNNO=$1
|
||
|
BINARYDIR=/nvme/27Al_Feb2021/DAQ/run_$RUNNO/UNFILTERED/
|
||
|
ARCHIVE=/nvme/WorkingData/raw_binary/run_$RUNNO.tar.gz
|
||
|
|
||
|
echo "Running archivist for binary data in $BINARYDIR to archive $ARCHIVE..."
|
||
|
|
||
|
cd $BINARYDIR
|
||
|
|
||
|
tar -cvzf $ARCHIVE ./*.bin
|
||
|
|
||
|
cd -
|
||
|
|
||
|
echo "Complete."
|