<div dir="ltr">Try changing the first line of your script from #! bash to #! /bin/bash</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 25, 2015 at 1:16 PM, Fred Roller <span dir="ltr"><<a href="mailto:fredroller66@gmail.com" target="_blank">fredroller66@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Is the .sh file still executable after the update<br>
<br>
-rwxrwxr-x 1 user user 29 Nov 25 16:03 HelloWorld.sh*<br>
<br>
note the "x" in the permissions.<br>
If not then from command line...<br>
<br>
chmod +x [filename]<br>
<br>
to add to the given file.  If you suspect a bug then from cli...<br>
<br>
vi HelloWorld.sh [or your fav editor]<br>
<br>
#! bash<br>
echo "Hello World"<br>
exit<br>
<br>
save and exit editor. Then make executable with...<br>
<br>
chmod +x HelloWorld.sh<br>
<br>
then execute the program...<br>
<br>
./HelloWorld.sh<br>
<br>
which should produce...<br>
<br>
user@~$ ./HelloWorld.sh<br>
Hello World<br>
user@~$<br>
<br>
do this as your user, not sudo, and should tell you whether or not there is an issue.  If it executes then the issue will most likely be permissions in the .sh programs that are failing or the program itself.  After the test you can erase the HelloWorld.sh program. ;)<br>
<br>
HIH<br>
Fred<div class="HOEnZb"><div class="h5"><br>
<br>
On 11/25/2015 06:18 AM, JMZ wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Even if I try to execute it using terminal nothing happens.<br>
<br>
Any suggestions?<br>
</blockquote>
<br>
<br></div></div><span class="HOEnZb"><font color="#888888">
-- <br>
xubuntu-users mailing list<br>
<a href="mailto:xubuntu-users@lists.ubuntu.com" target="_blank">xubuntu-users@lists.ubuntu.com</a><br>
Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/xubuntu-users" rel="noreferrer" target="_blank">https://lists.ubuntu.com/mailman/listinfo/xubuntu-users</a><br>
</font></span></blockquote></div><br></div>