Tool/software: Linux
Hi Experts,
I am trying to create customized script, which needs to be execute during boot up. For that i created one sample script helloworld.sh in /etc/init.d and after changing file permissions i linked it to /etc/rcX.d(X is run level) to run script on boot.
After reboot i can able to see my script running as service from boot logs.
[ OK ] Started helloworld.service.....
but i am not able to see the content of script.
my script content:
#!/bin/sh
echo "hello world"
I followed TIs wiki http://processors.wiki.ti.com/index.php/Sitara_Linux_Training:_Init_Scripts.
Could you please help me out from this issue as it seems i am missing something.
Thanks,
Gourav