16/11/2017 shell学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16/11/2017 shell学习笔记相关的知识,希望对你有一定的参考价值。

  1. 检查一组代码从执行开始到执行完毕的时间。

#!/bin/bash
start=$(date +%s)
commands;
statements;

end=$(date +%s)
difference=$(( end - start ))
echo Time taken to execute commands is $difference seconds.




以上是关于16/11/2017 shell学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Linux学习笔记-Shell教程

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

Shell脚本(学习笔记1)

shell脚本编程学习笔记-函数

linux学习笔记--工程师技术:shell脚本基础

《用Python玩转数据》学习笔记