In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.