11 lines
184 B
Bash
11 lines
184 B
Bash
|
#!/bin/sh
|
||
|
(
|
||
|
echo \#pragma once
|
||
|
echo 'constexpr char tellertoml[]=R"('
|
||
|
cat teller.conf
|
||
|
echo ')";'
|
||
|
|
||
|
echo 'constexpr char trackerstoml[]=R"('
|
||
|
cat trackers.conf
|
||
|
echo ')";'
|
||
|
) > configs.hh
|