mattfinlayson + unix 16
Dupx
january 2011 by mattfinlayson
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
september 2010 by mattfinlayson
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
may 2010 by mattfinlayson
I just had a brain baby.
# mkdir, cd into it
mkcd () {
mkdir -p "$*"
cd "$*"
}
unix
hacks
tech
# mkdir, cd into it
mkcd () {
mkdir -p "$*"
cd "$*"
}
may 2010 by mattfinlayson
Mostly-Random Password Generator | Heather Rivers
december 2009 by mattfinlayson
Brilliant and classy.
password
generator
unix
post:links
december 2009 by mattfinlayson
MultiTail
october 2008 by mattfinlayson
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: