aboutsummaryrefslogtreecommitdiff
path: root/examples/customization/pwd-cd-and-system/.lldbinit
blob: f477b5797bec514175e0c5c6c49323f25bc18019 (plain) (blame)
1
2
3
4
5
6
7
script import os, sys
# So that ~/utils.py takes precedence.
script sys.path[:0] = [os.path.expanduser('~')]
script import utils
command alias pwd script print os.getcwd()
command script add -f utils.chdir cd
command script add -f utils.system system