程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C語言和sh腳本的雜交代碼

C語言和sh腳本的雜交代碼

編輯:關於C語言
 

在網上看到了一個把 C語言和bash雜並起來的例子,這個示子如下所示。在下面這個例子中,我們把腳本用#if 0這個預編譯給起來,這樣就不會讓其編譯到C語言中了。

#if 0
echo "Hello from bash!"
exit
#endif
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char* argv[]) {
  puts("Hello from C!");
  return EXIT_SUCCESS;
}

下面,讓我看看如果來使用這樣的程序:

$ sh test.sh.c
Hello from bash!
$ gcc test.sh.c -o test
$ ./test
Hello from C!

你甚至還可以做一個自我編譯,並自我運行的源代碼。如下所示:

 

#if 0
file=`mktemp`
gcc -o $file $0
$file
rm $file
exit
#endif
#include <stdlib.h>
#include <stdio.h>

int main(int argc, char *argv[]) {
  puts("Hello from C!");
  return EXIT_SUCCESS;
}

運行:

$ sh test.sh.c
Hello from C!
$

當然,我並不建議你在真正的開發環境中這樣使用,我只不過是在介紹一個比較有趣的用法,僅此而已

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved