michael@0: #!/usr/bin/env python michael@0: michael@0: # Copyright (c) 2012 Google Inc. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: import sys michael@0: michael@0: f = open(sys.argv[1], 'w+') michael@0: f.write('Hello from touch.py\n') michael@0: f.close()