1 Star 0 Fork 1

田冶/shell

forked from 性能优化/shell 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
string.sh 729 Bytes
一键复制 编辑 原始数据 按行查看 历史
gang 提交于 2020-10-12 17:06 . shell 基础完结
#!/bin/bash
###
# @Description: 请编写Shell脚本以打印下面语句中字符数小于6的单词
# I am oldboy linux, welcome to our training
# @Version: 2.0
# @Autor: gang
# @Date: 2020-09-16 20:40:06
# @LastEditors: gang
# @LastEditTime: 2020-10-11 17:12:35
###
export LANG="zh_CN.UTF-8"
:<<EOF
1、请编写Shell脚本以打印下面语句中字符数小于6的单词
I am oldboy linux, welcome to our training
EOF
set -- I am oldboy linux, welcome to our training
:<<EOF
2、截取str变量的内容,从第2个字符之后开始截取,默认截取后面字符的全部,第2个字符不包含在内,也可理解为删除前面的多个字符。
EOF
str="I am phpstudy"
echo ${str:2}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/jytian/shell.git
[email protected]:jytian/shell.git
jytian
shell
shell
master

搜索帮助