print lines of conf file

main
Zynh Ludwig 2024-08-01 02:10:43 -07:00
parent 6a43dfdcd8
commit b8a2003a94
1 changed files with 4 additions and 2 deletions

View File

@ -15,8 +15,10 @@ in
let let
execName = service; execName = service;
script = writeShellScriptBin execName '' script = writeShellScriptBin execName ''
echo "hello!" while IFS="" read -r p || [ -n "$p" ]
echo "${config.repo-clone.pkg}" do
printf '%s\n' "$p"
done < "${config.repo-clone.pkg}"
''; '';
in in
"${script}/bin/${execName}"; "${script}/bin/${execName}";