🗃️ Committing everything that changed 🗃️

.claude/
Dockerfile
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/01-lenpaste.sh
This commit is contained in:
casjay
2025-09-11 03:31:30 -04:00
parent 549a3b8e06
commit 5eabfa3a71
5 changed files with 63 additions and 46 deletions

View File

@@ -460,7 +460,7 @@ ports)
# show running processes
procs)
shift 1
ps="$(__ps axco command | grep -vE 'COMMAND|grep|ps' | sort -u || grep '^' || echo '')"
ps="$(__ps axco command | grep -avE 'COMMAND|grep|ps' | sort -u || grep -a '^' || echo '')"
[ -n "$ps" ] && printf '%s\n%s\n' "Found the following processes" "$ps" | tr '\n' ' '
exit $?
;;