local tArgs = { ... }
if #tArgs < 1 then
  error( "Usage: mkdir <path>" )
end

local sNewDir = shell.resolve( tArgs[1] )
fs.makeDir( sNewDir )

