ComputerCraft Archive

mount

computer utility kepler155c github

Description

ComputerCraft OS

Installation

Copy one of these commands into your ComputerCraft terminal:

wget:wget https://raw.githubusercontent.com/kepler155c/opus/develop-1.8/sys/apps/mount.lua mount
Archive:wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-apps-mount mount
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-apps-mount mount

Usage

Run: mount

Tags

none

Source

View Original Source

Code Preview

local args = { ... }

local target = table.remove(args, 1)
target = shell.resolve(target)

fs.mount(target, table.unpack(args))