Search Results

1
vote
6answers
3k views

How to run C/C++ in a Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down. …
0
votes
4answers
4k views

How to run a .sh-script in an Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down. …
0
votes

How to run C/C++ in a Unix console/Mac terminal?

./[name of the program] For example ./a.out …
1
vote

How to run a .sh-script in an Unix console/Mac terminal?

To start the shell-script 'file.sh': sh file.sh bash file.sh Another option is set executable permission using chmod command: chmod +x file.sh …