logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【linux命令】查看和更新Linux系统时间

jk@wsn-ubuntu:~$ date2014年 07月 02日 星期三 09:25:22 CSTjk@wsn-ubuntu:~$ ntpdate time-a.nist.gov2 Jul 09:25:28 ntpdate[10929]: bind() fails: Permission deniedjk@wsn-ubuntu:~$ date2014年 07月 02日 星期三 09

#linux
Linux中杀掉特定名称的进程

以下命令是杀掉用grep匹配到特定名称的进程ps -ef|grep DeviceConnectionLimitTest |grep -v grep|cut -c 9-15|xargs kill -9

Python Reviewing Notes

# how to get help with python built-in functions1. dir# here a code of pythona = 'strings'dir(a)Then all attrs or functions of a as a string will be presented.2. help# help funti

#python
到底了