7 lines
120 B
Plaintext
7 lines
120 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
timestamp=$(date +%Y%m%d_%H%M%S)
|
||
|
|
||
|
outFile=program_${timestamp}.log
|
||
|
|
||
|
stdbuf -oL ./FSUDAQ_Qt6 | tee $outFile
|