6 lines
200 B
Bash
Executable File
6 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
ssh sdk@cvs.openbsd.org 'fgrep -v ksh- /etc/passwd' \
|
|
| egrep 111\|122 | grep -v gitsync | cut -d: -f1,5 | tr -s ',' \
|
|
| sed 's/,/, /g;s/,[, ]*$//g' | column -s":" -t | fzf -i -e
|
|
|