blob: faac39475cf740467587da427dc613961d896840 (
plain)
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
33
34
35
36
37
38
39
40
|
# coding=utf-8
# flake8: noqa F821
"""
This is a Python script intended to be used with the "python_scripting.py" cmd2 example application.
To run it you should do the following:
./python_scripting.py
pyscript scripts/conditional.py directory_path
Note: The "cmd" function is defined within the cmd2 embedded Python environment and in there "self" is your cmd2
application instance.
"""
import os
import sys
if len(sys.argv) > 1:
directory = sys.argv[1]
print('Using specified directory: {!r}'.format(directory))
else:
directory = 'foobar'
print('Using default directory: {!r}'.format(directory))
# Keep track of where we stared
original_dir = os.getcwd()
# Try to change to the specified directory
app('cd {}'.format(directory))
# Conditionally do something based on the results of the last command
if self._last_result:
print('\nContents of directory {!r}:'.format(directory))
app('dir -l')
print('{}\n'.format(self._last_result.data))
# Change back to where we were
print('Changing back to original directory: {!r}'.format(original_dir))
app('cd {}'.format(original_dir))
else:
# cd command failed, print a warning
print('Failed to change directory to {!r}'.format(directory))
|