Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 838

Manipulation or examining of text by programs, scripts, etc.

6 votes

Parsing XML, JSON, and newer data file formats in UNIX using command line utilities

for xml there is http://xmlstar.sourceforge.net/ XMLStarlet is a set of command line utilities (tools) which can be used to transform, query, validate, and edit XML documents and files using …
akira's user avatar
  • 1,074
11 votes
Accepted

Is it possible in bash, to start reading a file from an arbitary byte count offset?

for (( block = 0; block < 16; block += 1 )) do echo $block; dd if=INPUTFILE skip=$((block*512))MB bs=64 count=1 status=noxfer 2> /dev/null | \ head -n 1 done which .. creates no te …
akira's user avatar
  • 1,074