Linux下创建shellC小程序介绍

Posted 爬行的乌龟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下创建shellC小程序介绍相关的知识,希望对你有一定的参考价值。

1.创建一个shell脚本文件

gedit  hello_shell.sh  ##创建文件

2.###在文件内添加一下内容

#!/bin/bash

for  ((i=0;i<10;i++));do

  echo   "hello shell"

done

exit 0

3.为文件添加可执行权限

chmod 755 hello_shell.sh

4.执行脚本

./hello_shell.sh

 

###创建一个C语言程序"hello world"

1.gedit  hello_world.c

2.##添加一下内容

#include  <stdio.h>

int  main(void)

{

  printf("hello world!\n");

  return 0;

}

3.保存后使用gcc生成可执行文件

gcc  -o  hello_world  hello_world.c

gcc生成的二进制文件,默认具有可执行权限,不需要修改

 

以上是关于Linux下创建shellC小程序介绍的主要内容,如果未能解决你的问题,请参考以下文章

如何实现在Linux下创建服务程序

微信小程序开发—小程序框架详解

微信小程序之基于云开发的定时任务实现定时数据汇总

微信小程序介绍

微信小程序介绍

电商小程序实战教程-商品移动端管理功能开发