forked from cirosantilli/linux-kernel-module-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetvar
executable file
·32 lines (28 loc) · 926 Bytes
/
getvar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
import common
class Main(common.LkmcCliFunction):
def __init__(self):
super().__init__(
defaults = {
'show_time': False,
},
description='''\
Print the value of a self.env['py'] variable.
https://cirosantilli.com/linux-kernel-module-cheat#getvar
''',
)
self.add_argument('--type', choices=['input', 'all'], default='all')
self.add_argument('variable', nargs='?')
def timed_main(self):
variable = self.env['variable']
if variable:
print(self.env[variable])
else:
if self.env['type'] == 'input':
to_print = self.input_args
elif self.env['type'] == 'all':
to_print = self.env
for key in sorted(to_print):
print('{}={}'.format(key, self.env[key]))
if __name__ == '__main__':
Main().cli()