|
|
|
|
|
by JonahBraun
4094 days ago
|
|
I'm assuming your trying to search and only see remote positions. Quick CLI hack, tested only on MacOSX w/ gnu coreutils: <select all from this page, copy>
pbpaste | tr '\n' '⁄' | sed 's/\[−\]/\n/g' | grep -ai 'remote' | grep -avi 'no remote' | tr '⁄' '\n' |
|