1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/fmt/tests/string_interpolation_complex_keep.vv

10 lines
195 B
V

struct Container {
id string
}
container := Container{}
docker_pubkey := '1234657890'
cmd := "docker exec $container.id sh -c 'echo \"$docker_pubkey\" >> ~/.ssh/authorized_keys'"
println(cmd)