7 lines
115 B
Bash
Executable file
7 lines
115 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if command -v clipse >/dev/null; then
|
|
clipse -listen-shell &
|
|
else
|
|
echo "error: clipse not found"
|
|
fi
|