Took about 3 hours to follow along , stop do experiment , continue stop, document, continue , stop experiment ,continue. Very worthwhile 3 hours! A very solid foundation to expand upon indeed! Thank You!
Just wanted to ask you about comparing two dates in lets day an excel sheet with a date column, lets suppose printing only rows with the dates after 30/04/2020. cat covid19-cable-broadcast-labeled.csv | awk -F',' '{if ($1 = "cnn" && $7 = "covid_direct" && $3 > "30/04/2020") print $1","$2","$3","$6","$7","}' > filtered_paragraphs.csv. I have the above command where I have to write rows/entries with the conditions of the column 7 value = covid_direct, column 1 value = cnn and the dates column (column 3) date should be after 30 April 2020.
@@harshareddy3214 not sure ..its working fine in mine ...could you send some more detail in telegram group so that I can look into your issue and provide some solution.
Hi bro Need to use regex in particular column as tab separator file. In that particular column want to replace only in between character . Trying with this comment awk ‘{gsub(/(?
@@archanakoti723 I guess there is mutiple ways if you search on internet..one of which is learnbyexample.github.io/learn_gnuawk/installation-and-documentation.html
Never Mind I Got It. It's a range! Does anyone know why awk '$4==5000 , $5==500 different from awk $4==5000 && $5==500? what is the difference between , and && I'm processing a file generated by ls -lR > ls.txt so I think maybe the data like /home/bozo/Documents/: total 4410736 recursing down directories to regular entries like -rw-rw-r-- 1 bozo bozo 12675 Apr 8 03:38 SteelyDan.xspf . . . might be messing things up. I will turn on transcript to pay particularly close attention to what Pedagogy is saying.
Excellent..
Took about 3 hours to follow along , stop do experiment , continue stop, document, continue , stop experiment ,continue. Very worthwhile 3 hours! A very solid foundation to expand upon indeed! Thank You!
Your guide for awk is super practical! Thank yo so much!
Best one I have found yet for AWK tutorial.
Thanks for the video, good explanation. Appreciated.
Amazing work
Thank you! Super Clear!
This was a really good overview of AWK, thanks for sharing.
Awesome bro
Amazing review
Just wanted to ask you about comparing two dates in lets day an excel sheet with a date column, lets suppose printing only rows with the dates after 30/04/2020. cat covid19-cable-broadcast-labeled.csv | awk -F',' '{if ($1 = "cnn" && $7 = "covid_direct" && $3 > "30/04/2020") print $1","$2","$3","$6","$7","}' > filtered_paragraphs.csv. I have the above command where I have to write rows/entries with the conditions of the column 7 value = covid_direct, column 1 value = cnn and the dates column (column 3) date should be after 30 April 2020.
thank you, very underrated channel
GREAT MAN YOU MADE MY DAY
thanks.
Thanks, you give me some Insight about awk
Beautifully Explained. Thank you 👍
Excellent.
Good work ., found very useful :)
wow muy bien course amigo gracias "!!!"
Very good tutorial, thanks for posting
thanks
👍
Tq sir🙏🙏🙏
Really great video, thank you
Awsome tutorial. Thanks for making the effort
Superb
This is good stuff bro
Very helpful for me 😊
very nice! Thanks!
Thank you very much bro
Nice video 🎉
Try to provide thumbnail for every video😀
This is my thumbanil...;)
How to extract logs between two timestamps in linux plus other lines also which implies between those patterns?
Bro after matching manager it should print everything in that line excluding manager till end of line can u send the command
This should do the trick -
awk '/manager/ {print $0}' filename | tr 'manager' ' ' | tr -s ' '
@@PedagogyV not executing bro it's throwing error when not truncating set1, string2 must be non-empty
@@harshareddy3214 not sure ..its working fine in mine ...could you send some more detail in telegram group so that I can look into your issue and provide some solution.
Sir can you tell reversing any number
use rev command to reverse any string
16
I want to convert a single column into rows of a binary file, then I want to separate rows with 128bits
Hi bro
Need to use regex in particular column as tab separator file. In that particular column want to replace only in between character . Trying with this comment awk ‘{gsub(/(?
In my laptop ,> < ,
,= Operation not working...how to solve it can you please tell me
can you update the awk with the latest version.... sometimes its version problem.
@@PedagogyV yeah sure i can update
Can you please tell me how to update
I am new to it so
@@archanakoti723 I guess there is mutiple ways if you search on internet..one of which is
learnbyexample.github.io/learn_gnuawk/installation-and-documentation.html
Never Mind I Got It. It's a range!
Does anyone know why awk '$4==5000 , $5==500 different from awk $4==5000 && $5==500? what is the difference between , and &&
I'm processing a file generated by ls -lR > ls.txt so I think maybe the data like
/home/bozo/Documents/:
total 4410736
recursing down directories to regular entries like
-rw-rw-r-- 1 bozo bozo 12675 Apr 8 03:38 SteelyDan.xspf
.
.
.
might be messing things up.
I will turn on transcript to pay particularly close attention to what Pedagogy is saying.
thank you very much can you pleas help me
one tow three 6542/ray of 1233.234445
how can i make it like this :
1233.234445:6542
is this a single string or the data present in a file ? could you please elaborate it