On 26/07/2024 06:59, cor...@free.fr wrote:

My actual requirement is that I want to 'ls -ltr' into a subdir in /tmp. that subdir is apache's tmp dir. but the name of the subdir is too long (hard to copy&paste), so I am looking for a easier way.

Use glob if it is acceptable

sudo ls -ltr /tmp/*-apache2.service-*

If you need a private tmp directory of a specific systemd service then try to find proper tools to query it

service="bluetooth.service"
pid="$(systemctl show --property MainPID --value "$service")"
tmp="$(findmnt --task "$pid" --target /tmp --noheading --output FSROOT --raw)"
ls -ltr "$tmp"


Reply via email to