Syntax refers to the rules of programming languages which stipulate how code is to be arranged so that the structure is syntactically correct and can be executed successfully in the particular framework of those languages.
Questions tagged [syntax]
102 questions
1
vote
0 answers
Syntax Error while running an install.sh file
I have a problem with a .sh file. This file will install a. Py file in the same folder! The file looks like this:
#!/bin/bash/
python install.py "$ @"
Can somebody pleace help me?

Simon
- 11
- 2
0
votes
0 answers
Need to know about " . " Symbol?
There is a command
if [ -f ~/.bashrc ]; then
. ~/.bashrc
I need to know why there is "." right before ~/.bashrc?

Unknown person
- 235