CVS update by ben xemacs-builds/ben ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Thu May 10 00:45:53 EDT 2007


  User: ben     
  Date: 07/05/10 06:45:53

  Modified:    xemacs-builds/ben bash-functions cvs-shell-functions
Log:
functions for svn, grepping java files

Revision  Changes    Path
1.7       +6 -0      XEmacs/xemacs-builds/ben/bash-functions

Index: bash-functions
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/ben/bash-functions,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- bash-functions	2007/01/18 10:22:18	1.6
+++ bash-functions	2007/05/10 04:45:52	1.7
@@ -340,6 +340,12 @@ function gh()
   grep $grepopt "$@" *.[hH] | more
 }
 
+# Grep .java files in the current directory.
+function gj()
+{
+  grep $grepopt "$@" *.java | more
+}
+
 ##################### Diffing
 
 alias diff='diff -u'



1.2       +9 -0      XEmacs/xemacs-builds/ben/cvs-shell-functions

Index: cvs-shell-functions
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs-builds/ben/cvs-shell-functions,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- cvs-shell-functions	2006/12/25 09:09:25	1.1
+++ cvs-shell-functions	2007/05/10 04:45:52	1.2
@@ -1,5 +1,14 @@
 ##### cvs-bash-functions  -*- Shell-script -*-
 
+##################### SVN
+
+alias sup='svn update'
+alias scom='svn commit'
+function sdi()
+{
+  svn diff "$@" | more
+}
+
 ##################### CVS
 
 alias ccom='cvs-commit'





More information about the XEmacs-CVS mailing list