Subversion Search
For your convenience, both the Deos and DDCI Subversion repositories have been checked out into a directory on the Linux04 server. Cron jobs running every thirty minutes will keep these directories up to date. The Deos directory is updated at the top and bottom of the hour. The DDCI directory is updated at quarter past and a quarter till the hour. To access these checked out repositories, one must:
- Log into the linux04 system using ssh using your UNIX/Linux user ID and password.
- Change directories (cd) to /current_svn.
- Pick Deos or DDCI or both.
- find, grep, browse, or whatever you want.
All of the directories and files belong to root. Only those user ID's belonging to the eng group have read access to these directories and their contents.
Here is an example of how to find if there are any assembly files (.s) that contain the string FALSE. Note the "-print0" and --null are because some folks insist on putting file names with spaces in scm.
$ ssh linux04 $ cd /current_svn/ $ find Deos/products/ DDCI/products/ -iname '*.s' -print0 | xargs --null grep FALSE