linux第一个C语言和sh脚本

Posted 田云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux第一个C语言和sh脚本相关的知识,希望对你有一定的参考价值。

linux第一个C语言

$ gedit hello_world.c
#include <stdio.h>

int main(void)
{
    printf("hello world!\n");
    return 0;
}
保存后使用 gcc 生成可执行文件:

$ gcc -o hello_world hello_world.c
gcc 生成二进制文件默认具有可执行权限,不需要修改 ,然后直接执行即可

linux 第一个sh脚本文件

先创建脚本文件:gedit hello_shell.sh
内容:
#!/bin/bash

for ((i=0; i<10; i++));do
    echo "hello shell"
done

exit 0
修改权限:
$ chmod 755 hello_shell.sh
执行脚本:
$ ./hello_shell.sh

 

以上是关于linux第一个C语言和sh脚本的主要内容,如果未能解决你的问题,请参考以下文章

为啥C语言用execl执行bash shell脚本会出现Exec format error

C语言能否用在shell脚本

Shell脚本入门学习

linux中shell分多少种,都有啥区别

Shell脚本学习

Shell脚本开发