2022-09-05 09:04:50 -05:00
|
|
|
#!/bin/sh
|
2022-09-05 09:25:00 -05:00
|
|
|
cd $1
|
2022-09-05 09:04:50 -05:00
|
|
|
(
|
|
|
|
echo \#pragma once
|
|
|
|
echo 'constexpr char tellertoml[]=R"('
|
|
|
|
cat teller.conf
|
|
|
|
echo ')";'
|
|
|
|
|
|
|
|
echo 'constexpr char trackerstoml[]=R"('
|
|
|
|
cat trackers.conf
|
|
|
|
echo ')";'
|
|
|
|
) > configs.hh
|