📜  捕获输入 bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:23.113000             🧑  作者: Mango

代码示例1
#!/bin/bash
# your code goes here
echo "if double helix, type - dh " 
echo "single strand, type - ss"
read htype # this is catching input
echo Structure is $htype ;