Exploring NSK
Introduction
Using Toolshed Functions
import Toolshed
# Get the current weather from wttr.in
weather()
# List network interfaces
ifconfig()
# List USB devices
lsusb()
Reading the Filesystem Directly
"/proc/cpuinfo"
|> File.read!()
|> IO.puts
File.ls!("/sys/class")
File.ls!("/dev")