摘要:
Fitten Code vscode安装插件 先注册登录 智能补全 问答 生成代码 选择代码,编辑代码 TabNine vscode安装插件 注册 打开vscode使用,选择型号 确认 输入问题,点击发送 阅读全文
摘要:
执行python 进入指定目录下载插件 dogle@DESKTOP-KI961IK MINGW64 ~/.atom/packages $ git clone https://github.com/lsegal/atom-runner.git Cloning into 'atom-runner'... 阅读全文
摘要:
下载安装 下载地址 点击查看详情 压缩包直接解压,双击启动,创建快捷方式 配置环境变量 Path=D:\software\Atom x64\resources\app\apm 双击AtomSetup-x64.exe安装,默认安装位置C:\Users\xxx\AppData\Local\atom 设置 阅读全文
摘要:
执行时间 # 格式 f1 f2 f3 f4 f5 program # 其中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程序。 当 f1 为 * 时表示每分钟都要执行 program,f2 为 * 时表示每 阅读全文
摘要:
案例 # 新建脚本 [root@VM-12-15-centos home]# vi test1.sh # 编写如下 username="goudan" # 新建脚本 [root@VM-12-15-centos home]# vi test2.sh # 编写如下 #使用 . 号来引用test1.sh 阅读全文
摘要:
输出重定向 # 格式 命令 > 文件名 # 案例 [root@VM-12-15-centos home]# who > users # 生成文件 [root@VM-12-15-centos home]# ls users # 查看 [root@VM-12-15-centos home]# cat u 阅读全文
摘要:
定义函数 [root@VM-12-15-centos home]# vi test.sh # 编写如下 demoFun(){ echo "这是我的第一个 shell 函数!" } echo " 函数开始执行 " demoFun echo " 函数执行完毕 " # 执行脚本 [root@VM-12-1 阅读全文
摘要:
算术运算符 点击查看详情 运算符 说明 举例 + 加法 expr $a + $b 结果为 30。 - 减法 expr $a - $b 结果为 -10。 * 乘法 expr $a \* $b 结果为 200。 / 除法 expr $b / $a 结果为 2。 % 取余 expr $b % $a 结果为 阅读全文
摘要:
判断 fi [root@VM-12-15-centos home]# vi test.sh # 编写如下 a=100 b=100 if test $[a] -eq $[b] ; then echo "true"; fi # 执行 [root@VM-12-15-centos home]# sh tes 阅读全文
摘要:
数值 案例1 [root@VM-12-15-centos home]# vi test.sh # 编写如下 num1=100 num2=100 if test $[num1] -eq $[num2] then echo '两个数相等!' else echo '两个数不相等!' fi # 执行 [ro 阅读全文
摘要:
打印字符串 [root@VM-12-15-centos home]# printf "Hello, Shell\n" Hello, Shell 编写脚本 [root@VM-12-15-centos home]# vi test.sh # 编写如下 printf "%-10s %-8s %-4s\n" 阅读全文
摘要:
打印字符串 echo "It is a test" 打印特殊字符 echo "\"It is a test\"" # 输出结果 "It is a test" 打印变量 # read表示接收执行脚本的输入的第1行 # 编辑 [root@VM-12-15-centos home]# vi test.sh 阅读全文
摘要:
执行脚本时传入参数 [root@VM-12-15-centos home]# vi test.sh # 编写如下 echo "Shell 传递参数实例!"; echo "执行的文件名:$0"; echo "第一个参数为:$1"; echo "第二个参数为:$2"; echo "第三个参数为:$3"; 阅读全文
摘要:
shell脚本 [root@localhost ~]# cd /home # 编辑 [root@localhost home]# vi test.sh # 编写如下 #!/bin/bash echo "Hello World !" # 设置权限 [root@localhost home]# chmo 阅读全文
摘要:
vim # 编辑文件,进入命令模式 vim 文件名称 # 编辑文件,进入输入模式 i [ a | o ] # 从输入模式退出到命令模式 Esc # 从命令模式退出,退出编辑 :w 保存文件。 :q 退出 Vim 编辑器。 :wq 保存文件并退出 Vim 编辑器。 :q! 强制退出Vim编辑器,不保存 阅读全文
摘要:
磁盘空间占用情况 df [-ahikHTm] [目录或文件名] -h:可读的方式显示输出结果(例如,使用 KB、MB、GB 等单位)。 -T:显示文件系统的类型。 -t <文件系统类型>:只显示指定类型的文件系统。 -i:显示 inode 使用情况。 -H:该参数是 -h 的变体,但是使用 1000 阅读全文
摘要:
win11安装MinGW 进入github 下载压缩包 直接解压后移动到指定目录,配置环境变量 Path=C:\Program Files\mingw64\bin 验证 C:\Users\dogle>gcc --version gcc (x86_64-win32-seh-rev0, Built by 阅读全文
摘要:
官网 打开cmd安装依赖 C:\Users\ychen>pip install scipy Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Requirement already satisfied: scipy in c:\p 阅读全文
摘要:
官网 安装 # 打开cmd C:\Users\ychen>pip install pyecharts Looking in indexes: https://mirrors.aliyun.com/pypi/simple/ Collecting pyecharts Downloading https: 阅读全文