Category O/S

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) …

grep ifconfig list ips

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’…

restart windows cilpboard

Instructions First try this: Run the following from run prompt: cmd /c “echo off | clip” Next try this: 1 Click the “Start” menu and “Control Panel.” 2 Double-click the “Administrative Tools” icon. If the “Administrative Tools” icon is not available,…

fix rdp clipboard

from Did you ever loose Clipboard functionality (copy/paste) while working with several Terminal Server sessions? I think everyone that works a lot with Terminal Server has experienced this from time to time. It’s caused by badly behaving applications. Dimitry…

automate command line linux

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…