Тёмный

Text processing using awk command in linux | awk patterns & actions | BEGIN,END,NR,FS,OFS,RS,ORS ... 

Pedagogy
Подписаться 7 тыс.
Просмотров 21 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 49   
@wowgingermobile2123
@wowgingermobile2123 Год назад
Your guide for awk is super practical! Thank yo so much!
@maxpolaris99
@maxpolaris99 2 года назад
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!
@rajasekharb6395
@rajasekharb6395 Год назад
Excellent..
@alvyibnferoz
@alvyibnferoz 3 года назад
Best one I have found yet for AWK tutorial.
@konkani_allwyn
@konkani_allwyn Год назад
Thanks for the video, good explanation. Appreciated.
@DavidReidChannel
@DavidReidChannel 3 года назад
This was a really good overview of AWK, thanks for sharing.
@kashifrana6798
@kashifrana6798 10 месяцев назад
Amazing work
@dodgewagen
@dodgewagen 8 месяцев назад
Thank you! Super Clear!
@johnmandrake8829
@johnmandrake8829 3 года назад
thank you, very underrated channel
@doctoronline461
@doctoronline461 2 года назад
GREAT MAN YOU MADE MY DAY
@PedagogyV
@PedagogyV 2 года назад
thanks.
@muhammadrifqi1837
@muhammadrifqi1837 2 года назад
Thanks, you give me some Insight about awk
@sujaybiswas9166
@sujaybiswas9166 2 года назад
Beautifully Explained. Thank you 👍
@GopalMaliSnk
@GopalMaliSnk Год назад
Awesome bro
@williamm200
@williamm200 2 года назад
wow muy bien course amigo gracias "!!!"
@michaelkennedy5126
@michaelkennedy5126 2 года назад
Very good tutorial, thanks for posting
@PedagogyV
@PedagogyV 2 года назад
thanks
@shilpashreehn1005
@shilpashreehn1005 Год назад
Good work ., found very useful :)
@MrRossss1
@MrRossss1 2 года назад
Really great video, thank you
@swamivivekananda-cyclonicm8781
@swamivivekananda-cyclonicm8781 2 года назад
Excellent.
@kahlschlag17
@kahlschlag17 2 года назад
Awsome tutorial. Thanks for making the effort
@manvendra_singh
@manvendra_singh Год назад
Amazing review
@manvendra_singh
@manvendra_singh Год назад
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.
@Janik2370
@Janik2370 3 года назад
This is good stuff bro
@vijendra1150
@vijendra1150 3 года назад
Superb
@martyfriedman86
@martyfriedman86 2 года назад
very nice! Thanks!
@gunjan6652
@gunjan6652 2 года назад
Very helpful for me 😊
@dabididibide3855
@dabididibide3855 3 года назад
Thank you very much bro
@youtubes4403
@youtubes4403 Год назад
Tq sir🙏🙏🙏
@khajamd2784
@khajamd2784 2 года назад
👍
@avinashchoudhary6034
@avinashchoudhary6034 2 года назад
How to extract logs between two timestamps in linux plus other lines also which implies between those patterns?
@shubhamgarg113
@shubhamgarg113 3 года назад
Nice video 🎉 Try to provide thumbnail for every video😀
@PedagogyV
@PedagogyV 3 года назад
This is my thumbanil...;)
@harshareddy3214
@harshareddy3214 3 года назад
Bro after matching manager it should print everything in that line excluding manager till end of line can u send the command
@PedagogyV
@PedagogyV 3 года назад
This should do the trick - awk '/manager/ {print $0}' filename | tr 'manager' ' ' | tr -s ' '
@harshareddy3214
@harshareddy3214 3 года назад
@@PedagogyV not executing bro it's throwing error when not truncating set1, string2 must be non-empty
@PedagogyV
@PedagogyV 3 года назад
@@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.
@sarangpurnaye
@sarangpurnaye 2 года назад
I want to convert a single column into rows of a binary file, then I want to separate rows with 128bits
@hellosir9179
@hellosir9179 3 года назад
Sir can you tell reversing any number
@PedagogyV
@PedagogyV 3 года назад
use rev command to reverse any string
@rajagopal.m3756
@rajagopal.m3756 2 года назад
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
@archanakoti723 2 года назад
In my laptop ,> < , ,= Operation not working...how to solve it can you please tell me
@PedagogyV
@PedagogyV 2 года назад
can you update the awk with the latest version.... sometimes its version problem.
@archanakoti723
@archanakoti723 2 года назад
@@PedagogyV yeah sure i can update Can you please tell me how to update I am new to it so
@PedagogyV
@PedagogyV 2 года назад
@@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
@8polireddy
@8polireddy 2 года назад
16
@maxpolaris99
@maxpolaris99 2 года назад
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.
@scorpione7722
@scorpione7722 3 года назад
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
@PedagogyV
@PedagogyV 3 года назад
is this a single string or the data present in a file ? could you please elaborate it
Далее
Awk Crash Course
40:38
Просмотров 10 тыс.
How The 'awk' Command Made Me A 10x Engineer
10:40
Просмотров 174 тыс.
Learning Awk Is Essential For Linux Users
20:02
Просмотров 301 тыс.
Awk: Hack the planet['s text]!  (Exercises)
47:45
Просмотров 14 тыс.
Walking Through Several AWK Scripts
27:08
Просмотров 8 тыс.
Awk: Hack the planet['s text]!  (Presentation)
59:21
Просмотров 37 тыс.
Awk And Sed in Linux
27:09
Просмотров 2,5 тыс.