dotfiles/private_dot_config/scripts/executable_fill_template
linarphy 05d466adf8
Fix, Delete and Add
- Fix nvim config
- Add scripts
- Add power setting
- Add swayidle config
- Add template system
- Clean sway config
2023-08-18 03:43:52 +02:00

9 lines
120 B
Bash

#! /bin/bash
string="$1"
while read from to; do
string="${string//\$\{$from\}/$to}"
done < "$2"
tee $3 <<<"$string"