linux-tutorial/codes/shell/示例脚本/逻辑控制/解决读取列表中的复杂值.sh
2019-05-10 11:17:57 +08:00

7 lines
85 B
Bash

#!/bin/bash
for test in I don\'t know if "this'll" work
do
echo "word:$test"
done