To give you the best response, then yes, we would need to see the text of what you're trying to execute. Is it a shell script? Is it source code you're trying to compile?
An error message like what you describe usually indicates you forgot to properly close a begin-end type of block. For instance, in bash shell scripting you MUST have an if ... fi combination when using an if statement; a do ... done pair for certain loops. For C, you need curly brace pairs { ... }
Check through your code/command/script to make sure you've got all the matching pairs you need.
|