Search Results

Search: Posts Made By: MattyV
10,491
Posted By vgersh99
BEGIN { FS="[|]" } $1 ==...
BEGIN {
FS="[|]"
}

$1 == "CTI-ProgramStart" {
if( match($9, /Extention:[0-9][0-9]*/) ) {
str=substr($9, RSTART, RLENGTH)
ext=substr(str, index(str, ":")+1)
print ext
...
1,963
Posted By jim mcnamara
sql > SELECT ...
sql > SELECT
SYSDATE - TO_DATE('2006-12-29 12:57:08','YYYY-MM-DD HH:MI:SS')
FROM DUAL; ...
14
2,525
Posted By Don Cragun
Reading through the comments that have been...
Reading through the comments that have been posted in this thread, it seems clear to me that hadinetcat doesn't understand what the command:
grep -A x 5 numdoes. Putting it in a loop is adding to...
3,106
Posted By Yoda
sed -n "2,10p" lfile | awk...
sed -n "2,10p" lfile | awk '/error/&&!/memory/{c++}END{print c}'
sed -n "2,10p" lfile | awk '/error/&&!/memory/'
sed -n "2,10p" lfile | awk '/error/&&/memory/{c++}END{print c}'
sed -n "2,10p"...
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 04:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy