removed /etc and /opt

This commit is contained in:
cutemeli
2025-12-22 10:48:14 +00:00
parent 5ce7ca2c5d
commit 10d1afbb17
32559 changed files with 0 additions and 6756692 deletions

View File

@@ -1,20 +0,0 @@
#!/usr/bin/env bash
# Summary: List existing phpenv shims
# Usage: phpenv shims [--short]
set -e
[ -n "$PHPENV_DEBUG" ] && set -x
# Provide phpenv completions
if [ "$1" = "--complete" ]; then
echo --short
exit
fi
for command in "${PHPENV_ROOT}/shims/"*; do
if [ "$1" = "--short" ]; then
echo "${command##*/}"
else
echo "$command"
fi
done | sort