2019年5月7日

C 终端输入 字符123 输出 10进制123

摘要: #include #define N 20 int main(int argc, const char *argv[]) { char a[N] = {'\0'}; int i = 0; char ch = '\0'; while((ch=getchar())!='\n') { a[i++] = ch; } int cnt = i; int num = 0; for(... 阅读全文

posted @ 2019-05-07 20:29 管理员D 阅读(258) 评论(0) 推荐(0) 编辑

shell 命令 修改文件权限 chmod

摘要: 1. 所有者+、-权限 更改那个拥有者的权限 u 表示文件的所有者 g 表示文件所在的组 o 表示其他用户 a 所有,以上三者 增加 / 减少权限 + 表示增加权限 - 表示取消权限 更改具体的权限 r 读权限 w 写权限 x 执行权限 如:【 chmod u+x file 】 2. 根据文件的权限 阅读全文

posted @ 2019-05-07 19:58 管理员D 阅读(13561) 评论(0) 推荐(0) 编辑

shell 命令 文件(解)压缩 tar,zip, gzip,bzip2

摘要: 1.gzip / gunzip 【 gzip data.c】 对文件进行压缩,生成 data.c.gz 同时删除了原文件 同时压缩两个文件 【gunzip data.c.gz 】 【gunzip data.c.gz file.c.gz】对压缩包data.c.gz 进行解压,生成data.c 、也可以 阅读全文

posted @ 2019-05-07 19:46 管理员D 阅读(5722) 评论(0) 推荐(0) 编辑

shell 命令 链接文件 ln

摘要: 1. 创建软链接文件 【 ln -s 源文件 链接文件】 类似于windows下的快捷方式 【 ln -s expr.sh expr 】 此时创建的链接文件路径是相对于现在所在的路径,链接文件到其他目录下不可使用 【 ln -s /home/linux/test/c_high/day3/expr.s 阅读全文

posted @ 2019-05-07 18:59 管理员D 阅读(2891) 评论(0) 推荐(0) 编辑

shell 命令 查找命令find,grep

摘要: 1.find 查找文件 【 find -name 文件名 】 在当前目录及子目录中找这个文件 【 find -iname 文件名 】 在当前目录及子目录中找这个文件,不区分大小写 【 find -name 文件名 -type f 】 f 表示查找普通文件 -type 查找某一类型的文件 包括 b c 阅读全文

posted @ 2019-05-07 17:26 管理员D 阅读(5198) 评论(0) 推荐(0) 编辑

导航