Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Analyze the hybrid code between C language and SH script

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "analyzing the hybrid code of C language and SH script". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "analyze the hybrid code of C language and SH script".

1 # if 0

2 echo "Hello from bash!"

3 exit

4 # endif

5 # include

6 # include

7 int main (int argc, char* argv []) {

8 puts ("Hello from C!")

9 return EXIT_SUCCESS

10}

Next, let me see if I use such a program:

1$ sh test.sh.c

2 Hello from bash!

3$ gcc test.sh.c-o test

4 $. / test

5 Hello from C!

You can even make a source code that compiles and runs itself. As follows:

1 # if 0

2 file= `mktemp`

3 gcc-o $file $0

4$ file

5 rm $file

6 exit

7 # endif

8 # include

9 # include

ten

11 int main (int argc, char * argv []) {

12 puts ("Hello from C!")

13 return EXIT_SUCCESS

14}

Run:

1$ sh test.sh.c

2 Hello from C!

three

$

Thank you for your reading, the above is the content of "analyzing the hybrid code of C language and SH script". After the study of this article, I believe you have a deeper understanding of the problem of analyzing the hybrid code of C language and SH script. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report