我正在尋找grep最新的日誌文件(說abc-20141028-005356.log),這是修改後的解決方案。我可以用命令「ls -lt | head-1」來做到這一點,它給出瞭解決方案,但也有其他文件也在日誌文件夾中被修改..我試圖做一個頭-2,它給出了2個文件&然後grepped文件...說「ls -lt | head -2 | grep abc-」。採取最新的日誌文件和存儲在一個變量
真正的問題是,當我們有最新的數據相同的文件名&新的時間&日期。如何將最新的日誌文件存儲到具有相同重複文件名的變量&尾隨日期&時間。
PATH=`cd $1 ; ls -1t | head -1`
LOGFILE=$1$PATH
$ 1 = /選擇/ server1的/日誌/
請請告知同
我不能到grep O基時間戳唯一的文件,爲實例ABC -20141028-005356.log被修改&下一個文件是abc-20141028-005358.log,這是一個僅時間差異..但完整的文件名保持不變。
需要一個解決方案,在我可以修改分配給一個變量,不論文件名&時間戳(最新修改)的最新文件
I have couple of files here
total 0
-rw-r--r-- 1 root root 0 Nov 4 11:14 abc-20141028-005348.log
-rw-r--r-- 1 root root 0 Nov 4 11:14 abc-20141028-005358.log
-rw-r--r-- 1 root root 0 Nov 4 11:19 abc-20141029-005358.log
-rw-r--r-- 1 root root 0 Nov 4 11:19 abc-20141029-005360.log
This is the latest file i get if i use the below
[[email protected] RKP]# ls -1t | head -1
abc-20141029-005360.log
The above can be done when there is only files starting with abcd-***. Now i have the below files
-rw-r--r-- 1 root root 0 Nov 4 11:14 abc-20141028-005348.log
-rw-r--r-- 1 root root 0 Nov 4 11:14 abc-20141028-005358.log
-rw-r--r-- 1 root root 0 Nov 4 11:19 abc-20141029-005358.log
-rw-r--r-- 1 root root 0 Nov 4 11:19 abc-20141029-005360.log
-rw-r--r-- 1 root root 0 Nov 4 11:21 EFG-20141028-005348.log
-rw-r--r-- 1 root root 0 Nov 4 11:21 EFG-20141028-005358.log
-rw-r--r-- 1 root root 0 Nov 4 11:21 EFG-20141029-005358.log
When i do the above command
[[email protected] RKP]# ls -1t | head -1
EFG-20141029-005358.log
I want only files which are modified on abcd-XXXXX.XXXX based on the last modfied time.
I'm sorry for making this so confused. Please let me know if you need anything more.
The solution may be simple, but I'm not getting how to do this. !!!!
感謝那些工作....
謝謝...那有效。雖然在腳本中運行上面我得到這個錯誤行30:[::整數表達式預計
任何想法我失蹤。下面是相同部分的腳本。
if [ -e $POSFile ]; then
# Read last Position
lastPosition=`cat $POSFile`
fi
fileLength=`stat -c %s $LOGFILE`
if [ "$lastPosition" -gt "$fileLength" ]; then
# Log file rolled
lastPosition=0;
fi
difference=`expr $fileLength - $lastPosition`
# New Spot To POSFile
enter code here
echo $fileLength > $POSFile
你能解釋一下「真正的問題」嗎?我不明白你在那裏想表明什麼。你也可以直接在'ls'中直接使用''$ 1'',而不需要'cd'並且連接賦值中的變量。 – 2014-11-04 18:48:37
我需要根據修改時間grep最新的日誌文件。該文件應該有最新的數據。日誌文件是相同的... abcd-YYMMDD-TIME.log – RKP 2014-11-04 18:51:36
你的意思是文件的日期戳不足以找到正確的文件?你需要文件的實際修改時間?較舊的加蓋文件可能是您實際需要查看的最新文件? – 2014-11-04 18:52:18