We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ date //带有时区 $ date +%Y/%m/%d //区分大小写,显示年月日 $ date +%H:%M //显示小时和分钟 date '+%Y/%m/%d %H:%M' //处理空格
$ cal //显示当前这个月的月历 $ cal 2009 //显示2009年整年的日历 $ cal 10 2009 //显示2009年10月的月历
$ bc
输入该命令之后,就进入到这个软件的工作环境当中去了,运行界面截图如下:
之后你就可以输入你需要的计算,比如1+1+3 2-1等。
PS: 常用的运算符为:+、-、*、/、^、%
PS: 因为bc默认仅输出整数,如果要输出全部小数,那么就必须执行scale = number,哪个number就是小数点后的位数。
bc
scale = number
PS: 要离开bc回到命令提示符时,务必要输入"quit"来离开bc的软件环境
"quit"
The text was updated successfully, but these errors were encountered:
github第一篇文章,值得纪念一下下。
Sorry, something went wrong.
No branches or pull requests
显示日期与时间的命令
显示日历的命令
简单实用的计算器命令
输入该命令之后,就进入到这个软件的工作环境当中去了,运行界面截图如下:
显示日期与时间的命令
显示日历的命令
简单实用的计算器命令
输入该命令之后,就进入到这个软件的工作环境当中去了,运行界面截图如下:
之后你就可以输入你需要的计算,比如1+1+3 2-1等。
PS: 常用的运算符为:+、-、*、/、^、%
PS: 因为
bc
默认仅输出整数,如果要输出全部小数,那么就必须执行scale = number
,哪个number就是小数点后的位数。PS: 要离开
bc
回到命令提示符时,务必要输入"quit"
来离开bc
的软件环境The text was updated successfully, but these errors were encountered: