mirror of
https://github.com/AltraMayor/f3.git
synced 2025-08-03 18:46:00 -04:00
6 lines
172 B
Bash
Executable File
6 lines
172 B
Bash
Executable File
#!/usr/bin/env bash
|
|
LOG=$1
|
|
$(dirname $0)/f3write "${@:2}" 2>&1 | tee -a "${LOG}" && \
|
|
echo -e "\n\n" >> "${LOG}" && \
|
|
$(dirname $0)/f3read "${@:2}" 2>&1 | tee -a "${LOG}"
|