Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices tagged with awk, page 2

  1. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Sunday, 02-Sep-2018 20:32:33 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Three completly different AWK programs:

    seq 10 | awk '1 { print }'
    seq 10 | awk '/1/ { print }'
    seq 10 | awk 'NR==1 { print }'

    #Shell #AWK #regex

    In conversation Sunday, 02-Sep-2018 20:32:33 EDT from mastodon.social permalink
  2. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 13:39:32 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In AWK an action without associated pattern defaults to 1.
    So those two commands are the same:

    seq 10 | awk '{print}'
    seq 10 | awk '1 {print}'

    #Shell #AWK

    In conversation Tuesday, 12-Jun-2018 13:39:32 EDT from mastodon.social permalink
  3. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Monday, 04-Jun-2018 19:09:44 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Three completly different AWK programs:

    seq 10 | awk '1 { print }'
    seq 10 | awk '/1/ { print }'
    seq 10 | awk 'NR==1 { print }'

    #Shell #AWK #regex

    In conversation Monday, 04-Jun-2018 19:09:44 EDT from mastodon.social permalink
  4. Dave Morriss (perloid@mastodon.sdf.org)'s status on Wednesday, 23-May-2018 09:24:48 EDT Dave Morriss Dave Morriss
    in reply to
    • Brandon Hall
    • lnxw48a1

    @lnxw48a1 @bthall Glad you're enjoying the #Awk series. I'm currently planning episode 12. My collaborator's handle is b-yeezi (on #HPR anyway), but I don't believe he's on GS, Mastodon, or whatever

    In conversation Wednesday, 23-May-2018 09:24:48 EDT from mastodon.sdf.org permalink
  5. lnxw48a1 (lnxw48a1@nu.federati.net)'s status on Wednesday, 23-May-2018 08:14:16 EDT lnxw48a1 lnxw48a1
    • Brandon Hall
    • Dave Morriss
    • notklaatu
    @bthall Off and on. Thanks to the nature of my job, I can't keep a regular schedule, but when I'm "on", I will listen to the current episode for 2-3 consecutive months, as well as backtrack through a topic series if I find a particularly interesting episode that is part of such a series.
    .
    @perloid @perloid and another host did a series on #Awk that I liked. @klaatu did a series on basic #server_admin that was also very good. Also, way back, @kulprit@quitter.se did series on his "Goodwill cluster" of recycled thrift store computers and one on building your own TV antennas.
    In conversation Wednesday, 23-May-2018 08:14:16 EDT from nu.federati.net permalink
  6. ziggys (ziggys@bobinas.p4g.club)'s status on Sunday, 25-Mar-2018 13:32:06 EDT ziggys ziggys
    • Free and Open Source Software
    • p4g pandilla4gatos
    • Free Software
    barmark es un #script en awk que convierte texto plano en html, muy ΓΊtil para quienes encontramos que #markdown es un tedio y buscamos una buena alternativa para dar formato a un texto o bien para diseΓ±ar un sitio web estΓ‘tico sin mayores complicaciones. MΓ‘s info:

    Repositorio Oficial Mirror p4g

    html #barmark #awk #markdown #upmark /cc !foss !freesoftware !p4g

    In conversation Sunday, 25-Mar-2018 13:32:06 EDT from bobinas.p4g.club permalink
  7. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Saturday, 27-Jan-2018 17:07:09 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    How to Write Complex Awk Patterns using Operators?
    https://www.yesik.it/EP13

    #AWK #Shell #Linux

    In conversation Saturday, 27-Jan-2018 17:07:09 EST from mastodon.social permalink

    Attachments

    1. How to Write Complex Awk Patterns using Operators?
      from Yes I Know IT!
      Awk is a powerful tool using pattern matching to identify the data to process in a file. But Awk patterns are much more versatile than their `sed` counterpart. In this video, you will see the core logical and relational operators you can use in Awk patterns. And you will discover how you can use complex patterns to extract in a fraction of second the relevant informations from a data set containing more than 57000 records.
  8. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 25-Jan-2018 15:32:53 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    seq 10 | awk '{ print > "OUT." NR%2 }'
    head OUT.?
    Split a file in two parts based on odd/even lines

    #AWK #Shell

    In conversation Thursday, 25-Jan-2018 15:32:53 EST from mastodon.social permalink
  9. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 24-Jan-2018 22:19:52 EST Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    seq 10 | awk NR%2
    Keep odd lines of a file

    #AWK #Shell

    In conversation Wednesday, 24-Jan-2018 22:19:52 EST from mastodon.social permalink
  10. Jens Kubieziel (qbi@quitter.se)'s status on Tuesday, 16-Jan-2018 07:17:15 EST Jens Kubieziel Jens Kubieziel
    • Linux
    Heute steht #sed und #awk auf der Speisekarte. Das Ganze wird gewΓΌrzt mit ein wenig #tcpdump.
    !linux !debianΒ 
    In conversation Tuesday, 16-Jan-2018 07:17:15 EST from quitter.se permalink
  11. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 02-Nov-2017 07:59:07 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    Converting a text to uppercase from the shell? Is that so simple? Yes, but...
    https://www.yesik.it/EP17

    You've probably noticed from my accent (pun intended), I'm a French native speaker. So, in this video I show you several classical ways to convert characters to upper case from the shell. And most important, I will explain how and why they work--or don't work--with characters outside the ASCII range.

    #Uppercase #Lowercase
    #Locale #AccentedLetters
    #Sed #Awk #Bash

    In conversation Thursday, 02-Nov-2017 07:59:07 EDT from mastodon.social permalink
  12. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Thursday, 28-Sep-2017 12:13:01 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    In #awk a pattern without associated action defaults to '{ print }'
    seq 10 | awk /1/ is the same as
    seq 10 | awk '/1/ {print}'

    #Shell

    In conversation Thursday, 28-Sep-2017 12:13:01 EDT from mastodon.social permalink
  13. Yes, I Know IT ! πŸŽ“ (yesiknowit@mastodon.social)'s status on Wednesday, 27-Sep-2017 13:23:00 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! πŸŽ“

    seq 10 | awk NR%2
    Keep odd lines of a file

    #AWK #Shell

    In conversation Wednesday, 27-Sep-2017 13:23:00 EDT from mastodon.social permalink
  14. lnxw48a1 (lnxw48a1@nu.federati.net)'s status on Saturday, 09-Sep-2017 21:39:44 EDT lnxw48a1 lnxw48a1
    in reply to
    • Bob Jonkman
    @bobjonkman For the excedingly little I know how to do with it, I like #awk. I always say I'm going to explore more of it, but working in a Windows-centric world limits that.
    In conversation Saturday, 09-Sep-2017 21:39:44 EDT from nu.federati.net permalink
  15. Bob Jonkman (bobjonkman@gs.jonkman.ca)'s status on Saturday, 09-Sep-2017 20:58:47 EDT Bob Jonkman Bob Jonkman
    in reply to
    • lnxw48a1
    Guilty as charged. #awk
    In conversation Saturday, 09-Sep-2017 20:58:47 EDT from web permalink
  • After
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.