~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to file-tools/cat-to.py

  • Committer: Nick Chadwick
  • Date: 2009-04-06 13:37:38 UTC
  • mto: (1165.3.1 submissions)
  • mto: This revision was merged to the branch mainline in revision 1247.
  • Revision ID: chadnickbok@gmail.com-20090406133738-7l6am9i64tnbwijg
Added a new Admin view, which allows for the administration of projects
and project sets

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
 
import sys
4
 
 
5
 
if __name__ == "__main__":
6
 
    out = open(sys.argv[1], "wb")
7
 
    out.write(sys.stdin.read())
8
 
    out.close()