Update 2024-12-13 08:54 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2024-12-13 08:54:27 +01:00
parent 17325bb534
commit ca92c8badb
6 changed files with 69 additions and 9 deletions

18
.bin/port-jump Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
find /usr/ports/ \
-not \( -path "/usr/ports/pobj" -prune \
-o -path "*/distfiles" -prune \
-o -path "*/packages" -prune \
-o -path "*/logs" -prune \
-o -path "*/CVS" -prune \
-o -path "*/pkg" -prune \
-o -path "*/patches" -prune \
-o -path "*/files" -prune \
-o -path "*/openbsd-wip" -prune \
-o -path "*/mystuff" -prune \
-o -path "*/.git" -prune \
\) \
-maxdepth 4 \
-type d \
-iname "*$1*"