Skip to content
New issue

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

linux基本命令速记 #1

Open
hehongwei44 opened this issue Sep 22, 2015 · 1 comment
Open

linux基本命令速记 #1

hehongwei44 opened this issue Sep 22, 2015 · 1 comment

Comments

@hehongwei44
Copy link
Owner

显示日期与时间的命令

$ date  //带有时区

$ date +%Y/%m/%d    //区分大小写,显示年月日

$ date +%H:%M   //显示小时和分钟

date '+%Y/%m/%d %H:%M'   //处理空格

显示日历的命令

$ cal   //显示当前这个月的月历

$ cal 2009  //显示2009年整年的日历

$ cal 10 2009 //显示2009年10月的月历

简单实用的计算器命令

$ bc 

输入该命令之后,就进入到这个软件的工作环境当中去了,运行界面截图如下:

显示日期与时间的命令

$ 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+1+3 2-1等。

PS: 常用的运算符为:+、-、*、/、^、%

PS: 因为bc默认仅输出整数,如果要输出全部小数,那么就必须执行scale = number,哪个number就是小数点后的位数。

PS: 要离开bc回到命令提示符时,务必要输入"quit"来离开bc的软件环境

@hehongwei44
Copy link
Owner Author

github第一篇文章,值得纪念一下下。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant