Displaying 1 result from an estimated 1 matches for "0010a0b8".
2005 Jul 31
2
bash file direct execution
Hi all.
I have a little strange problem.
I created a file called 'test.sh' in the root directory containing:
#!/bin/sh
echo test
When I execute it with '/test.sh' there is no output.
When I source it by executing it with '. /test.sh' the output comes ok.
When I move it to '/root' and execute it with '/root/test.sh' then it works
perfectly.
When I move it