Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.144.16.40
Current Path : /usr/share/bug/ |
| Current File : //usr/share/bug/screen |
#!/bin/sh
exec 1>&3
exec 2>&3
echo File Existence and Permissions
echo ------------------------------
echo ''
ls -ldU \
/run \
/var/run \
/usr/bin/screen \
/etc/tmpfiles.d/screen-cleanup.conf \
/lib/systemd/system/screen-cleanup.service \
/etc/init.d/screen-cleanup \
/etc/rc?.d/*screen-cleanup
echo ''
echo File contents
echo -------------
echo ''
if [ -e /etc/tmpfiles.d/screen-cleanup.conf ]; then
echo '### /etc/tmpfiles.d/screen-cleanup.conf'
echo ______________________________________________________________________
cat /etc/tmpfiles.d/screen-cleanup.conf
echo ______________________________________________________________________
fi
|