Bash 脚本生成 shebang 文本的别名
Bash alias to script generating shebang text
如何为生成 shebang (#!/bin/bash
) 文本的短代码片段创建别名?
我正在寻找类似的东西:
alias createConfiger='echo -e "#!/bin/bash\necho configvalue" > printConfig.sh'
您需要分两步完成,显然也使用单引号:
tempvar='#!/bin/bash\necho configvalue'
alias createConfiger='echo -e "$tempvar" > printConfig.sh'
如何为生成 shebang (#!/bin/bash
) 文本的短代码片段创建别名?
我正在寻找类似的东西:
alias createConfiger='echo -e "#!/bin/bash\necho configvalue" > printConfig.sh'
您需要分两步完成,显然也使用单引号:
tempvar='#!/bin/bash\necho configvalue'
alias createConfiger='echo -e "$tempvar" > printConfig.sh'