*: Use xargs instead of while read one-line loops

This commit is contained in:
2025-05-27 17:00:35 +02:00
parent e9f05d5d08
commit 0c17ae8280
2 changed files with 4 additions and 13 deletions

View File

@@ -7,15 +7,11 @@
#
# pgrep --full "^($TERMINAL|tmux)( |$)" \
# | cut -d' ' -f1 \
# | while read -r line; do
# pgrep -P "$line"
# done \
# | xargs -n1 pgrep -P \
# NOTE: when using the full path not all shell instances are matched
pgrep "$(basename $SHELL)" \
| cut -d' ' -f1 \
| while read -r line; do
pwdx "$line" 2>/dev/null
done \
| xargs pwdx 2>/dev/null \
| cut -d' ' -f2- \
| sort -ur