Update 2024-02-14 07:51 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2024-02-14 07:54:31 +01:00
parent b55e6a3616
commit 9624895938
373 changed files with 19074 additions and 3045 deletions

15
.bin/OLD/devs Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
. ~/.bin/_config
set -xe
[ ! -z "$1" ] && EXTRA="-q $1"
F=$(find /usr/src /usr/xenocara /usr/www -type f \
-not -path "*/CVS/*" \
-not -path "*/.git/*" \
-not -name "*.orig" \
-not -name "*.git*" \
-not -name "*.cvs*" \
| fzf -e -1 -0 $EXTRA)
R="$(readlink -f "$F")"
test -z "$R" || vim "$R"
echo "$(dirname "$R")"