Live data from Hacker News

Viewing profile — thrwwy9234

thrwwy9234

HN member
Joined
Sat, Jun 28, 2025, 5:01 PM UTC
HN karma
24
Public activity
2 items

About thrwwy9234

No profile information was provided.

Recent public activity

  1. comment
    Comment #44413119

    It’s a condition. 1 is true-ish, so it’s a condition that is always true. The default action in awk is print, so it’s the same as: '{$1=$1}1{print}' Or the same as '{$1=$1}{print}'…

  2. comment
    Comment #44406253

    $ echo "one two three four five" | awk '{$3="";print}' one two four five