Shell
📜
文章列表: 1 篇
shell速查表
2018-09-08
shell速查表
2018-09-08 ~ 2018-09-08
shell
linux
1. 变量
1
2
3
#!/bin/bash
msg
=
"hello world"
echo
$msg
····