This commit is contained in:
2024-07-07 01:16:18 +08:00
commit 49901e616f
60 changed files with 8147 additions and 0 deletions

19
plugin/lsfix/__init__.py Normal file
View 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')

Binary file not shown.