v1.5.5
This commit is contained in:
19
plugin/lsfix/__init__.py
Normal file
19
plugin/lsfix/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
lsfix by autoz
|
||||
v0.1
|
||||
"""
|
||||
command_list = ['la','ll']
|
||||
def run(command):
|
||||
if command == 'la':
|
||||
la()
|
||||
elif command == 'll':
|
||||
ll()
|
||||
|
||||
|
||||
def la():
|
||||
import os
|
||||
os.system('ls -la')
|
||||
|
||||
def ll():
|
||||
import os
|
||||
os.system('ls -l')
|
||||
Reference in New Issue
Block a user