标签: bash unix
我需要在UNIX中读取一行文本select * from table。但是它将*替换为目录中存在的文件列表。知道如何以原始形式阅读它。
select * from table
*
例如:假设目录中存在a.txt和b.txt。然后
$ read line select * from table $ echo $line select a.txt b.txt from table
而不是*它取代了文件。我需要避免它。