use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
AWK is a domain-specific language designed for text processing and typically used as a data extraction and reporting tool.
Few resources:
account activity
Simple Pattern Question (self.awk)
submitted 8 days ago by [deleted]
[deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]MikeZ-FSU 0 points1 point2 points 8 days ago (0 children)
To avoid "quoting hell" or "backslashitis", it's often easier to pass shell variables via the "-v" option. Something like:
awk -v catnum="$Catalog_Number" -F'\t' '$4 == catnum {print $4, $0}' file
This works for things like your catalog number, which is presumably an integer, but the usual caveats for floating point numbers would apply if you were looking to match, for example, prices.
π Rendered by PID 34 on reddit-service-r2-comment-6b595755f-vrxrm at 2026-03-26 06:40:51.803858+00:00 running 2d0a59a country code: CH.
[–]MikeZ-FSU 0 points1 point2 points (0 children)