从bash文件中读取星号字符(*)

时间:2018-12-12 21:50:16

标签: bash

我正在从.txt文件中提取行: 说出Input.txt

a
*
b

然后我正在阅读:

#!/bin/bash
file=$1

ans=0
while  read -r line || [[ -n "$line" ]]
do
echo $line
done < $file # passing the file

我将得到以下输出

a
test main.py sic.sh
b

显示我目录的文件而不是*

我想根据需要检测/读取*的* char做出一些决定?

1 个答案:

答案 0 :(得分:5)

总是引用变量:

#!/bin/bash
file="$1"

ans=0
while  read -r line || [[ -n "$line" ]]
do
    echo "$line"
done < "$file" # passing the file