コード例 #1
0
 def do_chmod(self, line):
     shell_command(self._location.get_real_path(), line, "chmod")
コード例 #2
0
 def do_mkdir(self, line):
     shell_command(self.real_path, line, "mkdir")
コード例 #3
0
 def do_cat(self, line):
     shell_command(self._get_real_path(), line, "cat")
コード例 #4
0
 def do_rm(self, line):
     shell_command(self._location.get_real_path(), line, "rm")
コード例 #5
0
 def do_mkdir(self, line):
     shell_command(self._location.get_real_path(), line, "mkdir")
コード例 #6
0
 def do_mkdir(self, line):
     shell_command(self._location.get_real_path(), line, "mkdir")
コード例 #7
0
ファイル: terminal_mv.py プロジェクト: neue/terminal-quest
 def do_mv(self, line):
     shell_command(self.real_path, line, "mv")
コード例 #8
0
 def do_cat(self, line):
     shell_command(self.real_path, line, "cat")
コード例 #9
0
ファイル: terminal_mv.py プロジェクト: wyman58/terminal-quest
 def do_mv(self, line):
     if "*" in line:
         launch_application(self._location.get_real_path(), line, "mv")
     else:
         shell_command(self._location.get_real_path(), line, "mv")
コード例 #10
0
 def do_cat(self, line):
     shell_command(self.real_path, line, "cat")