1
0
Fork 0
mirror of https://github.com/sesps/SPS_SABRE_EventBuilder.git synced 2025-02-22 20:08:50 -05:00
SPS_SABRE_EventBuilder/bin/archivist
2021-07-13 16:36:41 -04:00

16 lines
279 B
Bash
Executable File

#!/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."