best diff tools
PAYWARE Ultra Edit (win + linux) – Beyond Compare (win + linux) – Araxis Merge (win + osX) – ExamDiff Pro (win) – ECMerge (win, osX, linux) – MergePlant (win) – Changes (OSX) …
PAYWARE Ultra Edit (win + linux) – Beyond Compare (win + linux) – Araxis Merge (win + osX) – ExamDiff Pro (win) – ECMerge (win, osX, linux) – MergePlant (win) – Changes (OSX) …
Linux ifconfig Example Type the following command: ifconfig | grep ‘inet addr:’| grep -v ‘127.0.0.1’ | cut -d: -f2 | awk ‘{ print $1}’ FreeBSD/OpenBSD ifconfig Example Type the following command: ifconfig | grep -E ‘inet.[0-9]’ | grep -v ‘127.0.0.1’…
I needed to rename a bunch of apache virtual hosts to *:80 and *:443. Here’s an example that renames to httpd.confr and changes :80 and :443 to *:80 and *:443: # sed -ir ‘s/VirtualHost [0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}:80/VirtualHost *:80/’ # sed…
How can you automate command line linux ? Using Pexpect of course! Pexpect is a pure Python module that makes Python a better tool for controlling and automating other programs. Pexpect is similar to the Don Libes `Expect` system, but…
Let’s say we wanted to list the total size of each directory on a freebsd, unix, or linux box. Here’s how to do it # du -sk /usr/local/svn/* | sort -n -r
Here’s the fix for Xlib: PuTTY X11 proxy: wrong authentication protocol attempted (source: ) Run “xauth list” on the user for your x11 session [wp_ad_camp_1] Take that output and su/sudo to the user you are getting the error on and…
howto add rpmforge rhel howto add rpmforge centos Here we go! RHEL3 and CentOS-3 x86 32bit: wget ; rpm -Uhv rpmforge* RHEL3 and CentOS-3 x86 64bit: wget ; rpm -Uhv rpmforge* RHEL4 and CentOS-4 x86 32bit: wget ; rpm -Uhv…
How to pass authentication with apache ldap active directory jenkins What is Jenkins? Jenkins is an extendable open source continuous integration server. Install Jenkins on Redhat # sudo wget -O # sudo rpm –import # yum install…
howto install gnome centos? yum install groupinstall gnome-desktop alternatively: To install KDE Desktop, type this: yum groupinstall “X Window System” “KDE (K Desktop Environment)” To install Gnome Desktop, type this: yum groupinstall “X Window System” “GNOME Desktop Environment” …
How do we find files modified in last five days unix linux? To find all files modified within the last 5 days: find / -mtime -5 -print The – in front of the 5 modifies the meaning of the time…