Class: Mysh::InitOption

Inherits:
CommandOption show all
Defined in:
lib/mysh/command_line/init.rb

Overview

The mysh init command.

Instance Attribute Summary

Attributes inherited from Action

#description, #name

Instance Method Summary collapse

Methods inherited from CommandOption

#get_arg

Methods inherited from Action

#action_info, #initialize, #process_quick_command, #short_name

Constructor Details

This class inherits a constructor from Mysh::Action

Instance Method Details

#post_boot(read_point) ⇒ Object

Execute the init command line option.



23
24
25
# File 'lib/mysh/command_line/init.rb', line 23

def post_boot(read_point)
  get_arg(read_point)
end

#pre_boot(read_point) ⇒ Object

Skip over the argument for pre_boot.



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/mysh/command_line/init.rb', line 10

def pre_boot(read_point)
  file_name = get_arg(read_point).to_host_spec

  if $mysh_init_file
    $mysh_init_file = $mysh_init_file.in_array + [file_name]
  else
    $mysh_init_file = file_name
  end

  mysh "load #{file_name}"
end