Merge branch 'master' of defaria.com:/opt/git/clearscm
authorAndrew <Andrew@ClearSCM.com>
Thu, 8 May 2014 07:00:08 +0000 (00:00 -0700)
committerAndrew <Andrew@ClearSCM.com>
Thu, 8 May 2014 07:00:08 +0000 (00:00 -0700)
etc/doskey.mac
rc/bash_login
rc/sshconfig

index 9cae752..4f9dec6 100644 (file)
@@ -1,10 +1,13 @@
+;= rem doskey macros to make cmd more Linux like\r
 ls=dir /w $*\r
 ll=dir /n /-c /q /ta $*\r
 ct=cleartool $*\r
-grep=find "$1" $*\r
+grep=findstr $*\r
 rm=del $*\r
 cp=copy $*\r
-perl=\\rtnlprod02\viewstore\PMO\CM_TOOLS\perl\bin\perl $*\r
+cat=type $*\r
+history=doskey /history\r
+asperl=C:\Perl\bin\perl $*\r
 lsvob=cleartool lsvob $*\r
 llvob=cleartool lsvob -long $*\r
 lsview=cleartool lsview $*\r
@@ -53,5 +56,4 @@ llreplica=multitool lsreplica -long -vob $*
 lsepoch=multitool lsepoch -vob $*\r
 llepoch=multitool lsepoch -long -vob $*\r
 chepoch=multitool chepoch -vob $*\r
-syncreplica=multitool syncreplica $*\r
-\r
+syncreplica=multitool syncreplica $*
\ No newline at end of file
index ff64550..89ae5a8 100644 (file)
@@ -144,7 +144,7 @@ else
   if [ $ARCHITECTURE = "sun" ]; then
     # Ugh! --color doesn't work on braindead SUN
     alias ls="ls -F"
-  else
+  else        
     alias ls="ls -F --color=auto"
   fi
 fi
@@ -157,6 +157,14 @@ if [ $ARCHITECTURE = "cygwin" ]; then
   alias host=nslookup
 fi
 
+if [ -f "$SYSTEMDRIVE/Perl64/bin/perl" ]; then
+  alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
+fi
+
+if [ -f "$SYSTEMDRIVE/Perl/bin/perl" ]; then
+  alias asperl="$SYSTEMDRIVE/Perl64/bin/perl"
+fi
+  
 export LANG=C
 
 if [ $(type -p vim) ]; then
index 1fa25ee..6c6b890 100644 (file)
@@ -1,3 +1,7 @@
 ForwardX11 yes
 #ForwardX11Trusted yes
 StrictHostKeyChecking no
+
+Host *
+  ServerAliveInterval 300
+  ServerAliveCountMax 2