mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
9 lines
161 B
Ruby
Executable file
9 lines
161 B
Ruby
Executable file
#!/usr/bin/env ruby -w
|
|
|
|
require 'English'
|
|
|
|
$LOAD_PATH << File.expand_path(__dir__)
|
|
|
|
require 'shell'
|
|
|
|
Shell::CLI.new.run(args: ARGV) if $PROGRAM_NAME == __FILE__
|