6 lines
67 B
Bash
6 lines
67 B
Bash
#!/bin/sh
|
|
|
|
if [ -x /home/root/target ]; then
|
|
/home/root/target
|
|
fi
|