module EacRubyUtils::Envs::Command::ExtraOptions
def append_chdir(command)
def append_chdir(command) extra_options[:chdir].present? ? "(cd '#{extra_options[:chdir]}' ; #{command} )" : command end
def chdir(dir)
def chdir(dir) duplicate_by_extra_options(chdir: dir) end