Source code migrated from gitlab
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
cat <<EOF >config.yaml
|
||||
---
|
||||
Employess:
|
||||
- name: Jim Halpert
|
||||
department: sales
|
||||
- name: Dwight Schrute
|
||||
department: sales
|
||||
---
|
||||
Fruits:
|
||||
$(
|
||||
while read line; do
|
||||
printf '\t%s %s\n' "-" $line
|
||||
done <fruits.txt
|
||||
)
|
||||
EOF
|
||||
Reference in New Issue
Block a user