0
votes
1answer
43 views
Fastest/One-liner way to get XML nodes into array of “path/to/nodes” in Ruby?
What is the fastest, one-liner/shortest way to get an Array of "strings/that/are/paths" from an XML file, using Nokogiri preferably. I'd like to build the array with an arbitrary …
1
vote
1answer
27 views
Combine Thumbnails to One Large Image with RMagick
What's the shortest way to combine say 20 256x256 thumbnails into a single large image of 4 rows by 5 columns using RMagick?
1
vote
7answers
105 views
Executing for-each in bash
I'm looking to write a Bash one-liner that calls a function once for each item in a list. For example, given the list foo bar baz and the program "cowsay", it would produce:
____ …
3
votes
2answers
224 views
excluding first and last lines from sed /START/,/END/
Consider the input:
=sec1=
some-line
some-other-line
foo
bar=baz
=sec2=
c=baz
If I wish to process only =sec1= I can for example comment out the section by:
sed -e '/=sec1=/, …
0
votes
1answer
104 views
Why does my perl one-liner ignore the first line of input?
I'm trying to strip some content from an HTML file automatically, and I'm using the following command to strip everything up to the useful data:
perl -pi.bak -e 'undef $/; s/^.*?& …
10
votes
22answers
3k views
What is your latest useful Perl one-liner (or a pipe involving Perl)?
The one-liner should:
solve a real-world problem
not be extensively cryptic (should be easy to understand and reproduce)
be worth the time it takes to write it (should not be too …
1
vote
3answers
183 views
How can I print the names of the files being processed in a Perl one-liner?
I generally use perl one liners instead of grep to search through files.
For example following prints all the locations containing #include <stdio.h>
perl -ne "print if(/#i …
1
vote
2answers
313 views
urlencode with only built-in functions
Without using plpgsql, I'm trying to urlencode a given text within a pgsql SELECT statement.
The problem with this approach:
select regexp_replace('héllo there','([^A-Za-z0-9])', …
0
votes
4answers
494 views
How to insert a new line character after a fixed number of characters in a file
I am looking for a bash or sed script (preferably a one-liner) with which I can insert a new line character after a fixed number of characters in huge text file.
3
votes
5answers
427 views
How does this Perl one liner to check if a directory is empty work?
I got this strange line of code today, it tells me 'empty' or 'not empty' depending on whether the CWD has any items (other than . and ..) in it.
I want to know how it works becau …
10
votes
4answers
397 views
Is there a one-line function that generates a triangle wave?
In a similar way that modulo generates a sawtooth wave. It doesn't have to be continuous.
here is what i mean:
int m = 10;
int x = 0;
int i = 0;
while (i < m*3) {
printf("%d …
12
votes
6answers
720 views
Most useful or amazing STL short liners
I'm looking for practical and educational samples of C++ / STL code fitting in few lines. My actual favorites are:
Empty a vector freeing its reserved memory:
vector <...> …
2
votes
6answers
262 views
one liner to extract data block by block
I always deal with data files that consist of many data blocks of the following format:
*name* attr (
VALID (
late_lead_up xxx ar uclk reff xxx slope xxx
…
0
votes
4answers
464 views
Why doesn’t my Perl one-liner work on Windows?
I don't have a lot of experience will Perl, but I believe what I am doing should be working.
First, from the Windows command prompt I generate a text file of all the files in a di …
4
votes
6answers
305 views
How can I make this one-liner work in DOS?
python -c "for x in range(1,10) print x"
I enjoy python one liners with -c, but it is limited when indentation is needed.
Any ideas?
