标签: python bash
我正在尝试编写一个可以进行一些基本计算的小型bash函数。我将此功能添加到~/.bash_profile:
~/.bash_profile
pyc() { python -c """from math import *; print($*)""" ;}
但是,当我想计算exp(5)时,我必须输入
pyc exp\c(5\)
我们如何修改bash函数,以便它适用于
pyc exp(5)
答案 0 :(得分:1)
一些符号由Bash解释。我建议使用此解决方法:pyc 'exp(5)'
pyc 'exp(5)'