#!/usr/bin/env python

import os
print 'cwd:', os.getcwd()
os.system('./cd')
print 'cwd:', os.getcwd()

