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