mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-18 06:13:10 +01:00
9 lines
201 B
Bash
9 lines
201 B
Bash
#!/bin/bash
|
|
for i in /home/user/ /home/pentoo /root/; do
|
|
if [ -d "${i}/wctf/liludallasmultipass" ]; then
|
|
cd "${i}/wctf/liludallasmultipass" || exit 1
|
|
fi
|
|
done
|
|
if [ -x "ldm" ]; then
|
|
./ldm &
|
|
fi
|