Search Results

Search: Posts Made By: MattyV
10,502
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,972
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,545
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,118
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 02:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy