class Samovar::Command

def system(*args, **options)

def system(*args, **options)
	command_line = args.join(' ')
	
	pid = Process.spawn(*args, **options)
	
	puts Rainbow(command_line).color(:blue)
	
	status = Process.waitpid2(pid).last
	
	return status.success?
rescue Errno::ENOENT
	return false
end