dotfiles/.config/zsh/qol.zsh
afonsofrancof ad9912c773
[MINOR] A bunch of things.
Themery for nvim, tmux theme, zsh stuff
2024-01-03 15:12:33 +00:00

18 lines
289 B
Bash

# ~/.config/zsh/qol.zsh
backup() {
cp $1 $1.bak
}
restore() {
mv $1 $(echo $1 | sed 's/\.bak//')
}
capture() {
sudo dtrace -p "$1" -qn '
syscall::write*:entry
/pid == $target && arg0 == 1/ {
printf("%s", copyinstr(arg1, arg2));
}
'
}