shell学习笔记(六)

【read】
读取键盘输入的变量
[root@monitor test]# cat ceshi.sh
#!/bin/bash
display='Please type your name:'
read -p "$display"
exit 0
[root@monitor test]# ./ceshi.sh
Please type your name:zhuzhu

 

注意read的用法

你可能感兴趣的:(shell,职场,休闲,shell学习,shell笔记)