Question

I'm delevoping a TV Scoreboard Application by using window laptop and raspberry pi. Socket connection by Putty.I have put the script timer.sh inside the raspberry pi by using WinSCP.

But when i run the command:

./run_timer.sh

Error prompt:

pi@raspberrypi ~ $ ./run_timer.sh
-bash: ./run_timer.sh: No such file or directory

timer.sh with command:

#!/bin/sh

java -jar /home/pi/ScoreBoard_app/Timer/Timer.jar

Any step i missed?

Was it helpful?

Solution

The error message indicates that the script, run_time.sh, is missing. I think your script's name should be timer.sh and there is nothing about the content of script. Make sure there is run_timer.sh in current directory.

Hope it helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top