tail
tail -n n(num) filename 顯示 filename 檔案中倒數n行內容
tail -n -n filename顯示 filename 檔案中倒數n行內容
tail -n +n filename顯示 filename 檔案,從正數第n行開始後面所有內容,包括第n行
tar打包排除某個目錄
tar zcvf fd.tar.gz * --exclude=file1 --exclude=dir1
注意:1、--exclude=file1 而不是 --exclude file1
2、要排除乙個目錄是--exclude=dir1而不是--exclude=dir1/
也可以在父目錄打包
tar zcvf fd.tar.gz pardir --exclude=pardir/file1 --exclude=pardir/dir1
readonly
shell中可以使用 readonly 唯讀變數
例如 readonly tmout
配置全域性生效的 readonly 在/etc/profile
# end of /etc/profile
#tmout=1800
readonly tmout
export tmout
#history
lsof
lsof -i:18443
sntp****** network time protocol
簡單時間同步協議
sntp -p no -r ip
unibi-etl1:~ # crontab -l
# do not edit this file - edit the master and reinstall.
# (/tmp/crontab.***xwyeqvp installed on mon feb 29 13:49:02 2016)
# (cron version v5.0 -- $id: crontab.c,v 1.12 2004/01/23 18:56:42 vixie exp $)
0 */1 * * * /usr/sbin/sntp -p no -r 10.44.28.13 每一小時同步一次
edt時間轉換cst時間
mv /etc/localtime /etc/localtime.bak
ln -s /usr/share/zoneinfo/asia/shanghai /etc/localtime
Python LTS 常用命令簡記
一.說明 二.檢視函式命令 2.1 mac linux 環境檢視函式 2.2 windows 環境檢視函式 2.3 閱讀python modules index 文件 最近在多語種環境下,各種操作切來切去的,好多常見命令,時間久了不用都快忘了,簡單記錄 一下,為了以後複製 貼上做準備 pydoc f...
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
LINUX常用命令
一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...