Update 2024-12-25 18:06 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2024-12-25 18:06:24 +01:00
parent 1f15f715a6
commit 2357c34813
2 changed files with 76 additions and 7 deletions

View File

@@ -17,7 +17,12 @@ echo "ports - /usr/ports"
echo "www - /usr/www"
echo
printf "Path [$PWD]: "
read _path < /dev/tty
read _reply < /dev/tty
if [ -z "$_reply" ]
then
_path="$PWD"
fi
# shortcuts!!!
case "$_path" in
@@ -34,7 +39,6 @@ then
_path="$(port-jump $_path)"
fi
_path=${_path:=$PWD}
print "Using: $_path"
if [ ! -d "$_path" ]