飘逸小馒头

文章
4
资源
0
加入时间
2年10月17天

Shell脚本基础从头开始(五)── shell的输入输出shell的输入shell的输出

目录shell的输入关于`cat`shell的输出shell的输入前面学习的过程中,我们提到了使用read -p命令,shell可以接收用户输入的参数并赋值给对应的变量,这里再介绍一个echo -n,可以实现同样的效果。#!/bin/bash# 关于 read 命令的使用read -p "please input your name:" nameecho "hello,$name!"echo -n "请输入你的名字:"read name