mattfinlayson + unix   16

Dupx
If you're familiar with dup(2) *nix system call, you know that if you issue it from the process space to an open file, you can remap any file descriptor to a new file and all subsequent calls to read/write(2) will read/write from/to the file. Thus the simple idea behind dupx is to use gdb to attach to the process and then do a dup(2) call on its file descriptors.
unix  process  redirect 
january 2011 by mattfinlayson
ssh tricks - the usual and beyond
RT @patrickdebois: just blogged : ssh tricks - the usual and beyond What's your favorite ssh trick?
ssh  tips  tricks  howto  unix 
september 2010 by mattfinlayson
Create and Change to a New Directory in One Command
I just had a brain baby.
# mkdir, cd into it
mkcd () {
mkdir -p "$*"
cd "$*"
}
unix  hacks  tech 
may 2010 by mattfinlayson
FatELF
It's about effing time.
linux  unix  install  tools 
october 2009 by mattfinlayson
MultiTail
Uses ncurses to allow you to tail multiple files or wildcards. It supports regex, watch, and has curses menus to make it easier to manipulate. Take that WebSphere.
unix  tool 
october 2008 by mattfinlayson

Copy this bookmark:



description:


tags: