diff --git a/linspector/frontends/lish.py b/linspector/frontends/lish.py index b178d31..5301474 100644 --- a/linspector/frontends/lish.py +++ b/linspector/frontends/lish.py @@ -274,4 +274,10 @@ class LishCommander(Exit, ShellCommander, LogCommander): self.print_color(PURPLE, "License: GNU Affero General Public License Version 3.0") def help_about(self): - print '''Show information about Linspector''' \ No newline at end of file + print '''Show information about Linspector''' + + def do_license(self, text): + os.system("less " + os.path.dirname(os.path.abspath(__file__)) + "/../../LICENSE") + + def help_license(self): + print '''Show license information''' \ No newline at end of file