Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / examples / customization / pwd-cd-and-system / .lldbinit
blobf477b5797bec514175e0c5c6c49323f25bc18019
1 script import os, sys
2 # So that ~/utils.py takes precedence.
3 script sys.path[:0] = [os.path.expanduser('~')]
4 script import utils
5 command alias pwd script print os.getcwd()
6 command script add -f utils.chdir cd
7 command script add -f utils.system system