mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
6 lines
115 B
Plaintext
6 lines
115 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
while IFS= read -r line;do
|
||
|
key=${line%%=*}
|
||
|
echo "x.$key() { x.config $key \"\$@\"; }"
|
||
|
done
|