Thread
:
How to execute a script in C?
View Single Post
02-16-2003, 06:04 AM
res
Confirmed User
Join Date: Nov 2002
Location: Europe
Posts: 1,118
For C scripts:
1) gcc -o target source.c
2) ./target
For Shell scripts:
1) Add header in your shell script: #!/bin/sh
2) chmod 755 filename.sh
3) filename.sh
res
View Public Profile
Find More Posts by res