如何在bash中删除双引号?

时间:2016-02-23 19:39:28

标签: bash

我想在bash中使用双引号,我遵循以下方法:

#!/bin/bash
this is a  \"number\"!

但我需要知道是否还有其他办法。

2 个答案:

答案 0 :(得分:3)

您可以将双引号括在单引号中:

echo '"hola"'

或者替代全文,包括双引号:

{{1}}

答案 1 :(得分:2)

使用GNU bash:

echo -e "this is a \x22number\x22"

输出:

this is a "number"