Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

load save

stage2/tool.livemd

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)