load save
Mix.install([
{:toolshed, "~> 0.3.0"}
])
Section
Toolshed.cmd("pwd")
Toolshed.cmd("ls")
## load
Toolshed.cat("test.txt")
## save
"""
hello world!!
"""
|> then(fn content ->
File.write("test.txt", content)
end)
Mix.install([
{:toolshed, "~> 0.3.0"}
])
Toolshed.cmd("pwd")
Toolshed.cmd("ls")
## load
Toolshed.cat("test.txt")
## save
"""
hello world!!
"""
|> then(fn content ->
File.write("test.txt", content)
end)