Linux 解压缩工具
tar 命令 zip/unzip 命令
tar 命令 zip/unzip 命令
1. POST 上传(带 JSON 参数) upload-mp3.sh 执行 upload-mp3.sh my… Read More »
1 wait wait是用来阻塞当前进程的执行,直至指定的子进程执行结束后,才继续执行。请看下面的演示: #!… Read More »
1 Linux font 安装 1. $ yum -y install fontconfig 安装好后,在/u… Read More »
1 查看和修改Linux的时区 # 查看当前时区 date -R # 执行 tzselect 命令—>选… Read More »
18种字符串截取方法 #!/bin/bash set -e # Shell脚本8种字符串截取方法总结 # 假设… Read More »
1 为什么ssh一关闭,程序就不再运行了? 元凶:SIGHUP (挂断信号)信号 让我们来看看为什么关掉窗口/… Read More »
1 Yum 安装 Nodejs $ su root # curl –silent –location ht… Read More »
包含/等于 # 包含 if [[ “hello world” =~ hello ]] then echo ‘&… Read More »
1 set -e 命令 正常情况下,我们会在sh脚本开头写上set -e,这是为了让语句报错时,可以立即退出s… Read More »