7 lines
143 B
Plaintext
7 lines
143 B
Plaintext
import "os"
|
|
|
|
# this copies the contents from /tmp/foo and puts them in /tmp/output
|
|
file "/tmp/output" {
|
|
content => os.readfile("/tmp/foo"),
|
|
}
|