User pixelbeat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T04:56:53Zhttp://stackoverflow.com/feeds/user/4421http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1921805/a-shell-script-problem-for-comparing-difference-between-two-files-linux/1921890#19218901Answer by pixelbeat for A shell script problem for comparing difference between two files. [Linux]pixelbeat2009-12-17T13:43:58Z2009-12-17T14:12:47Z<p>diff may move chunks within a file which is not what you want I think.
Here's an alternative:</p>
<pre><code>join -t'\0' -v2 <(cat -n a.txt) <(cat -n b.txt) | wc -l
</code></pre>
http://stackoverflow.com/questions/1883839/find-symlinks-to-certain-directory-or-one-of-its-subdirs/1884242#18842420Answer by pixelbeat for Find symlinks to certain directory or one of its subdirspixelbeat2009-12-10T21:39:27Z2009-12-10T21:39:27Z<p>Have a look at the findbl (bad links) script in fslint. It might give you some hints:
<a href="http://code.google.com/p/fslint/source/browse/trunk/fslint/findbl" rel="nofollow">http://code.google.com/p/fslint/source/browse/trunk/fslint/findbl</a></p>
http://stackoverflow.com/questions/1873505/bit-operations-in-c/1873538#18735381Answer by pixelbeat for Bit operations in Cpixelbeat2009-12-09T12:16:25Z2009-12-09T12:16:25Z<p><a href="http://www.pixelbeat.org/libs/bitops.h" rel="nofollow">http://www.pixelbeat.org/libs/bitops.h</a></p>
http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1866404#18664040Answer by pixelbeat for How to perform p4 submit operation without passing description inside the p4 submit form.pixelbeat2009-12-08T11:35:05Z2009-12-08T11:35:05Z<p>It's not just the description you need to enter, you also can edit the changelist specification which allows you to exclude files from the commit.</p>
<p>If you can do it on windows then perhaps there is a newer client on windows than what you're using on Linux?</p>
http://stackoverflow.com/questions/1836217/perl-or-something-else-m-problem/1836229#18362290Answer by pixelbeat for Perl (or something else) - ^M problempixelbeat2009-12-02T22:14:52Z2009-12-02T22:14:52Z<pre><code>sed 's/.\{1,\}/"&",/'
</code></pre>
<p>This was asked before <a href="http://stackoverflow.com/questions/1688952/">http://stackoverflow.com/questions/1688952/</a></p>
http://stackoverflow.com/questions/1831527/simple-way-to-colour-alternate-output-lines-in-bash/1832279#18322792Answer by pixelbeat for Simple way to colour alternate output lines in bashpixelbeat2009-12-02T11:15:39Z2009-12-02T11:30:34Z<p>This is to delineate wrapped lines I presume?
This shell script uses a background color from the <a href="http://www.frexx.de/xterm-256-notes/" rel="nofollow">256 color</a> palette,
so as not to interfere with other highlighting that grep --color might do.</p>
<pre><code>#!/bin/sh
c=0
while read line; do
[ $(($c%2)) -eq 1 ] && printf "\033[48;5;60m"
printf "%s\033[0m\n" "$line"
c=$(($c+1))
done
</code></pre>
<p>This has the caveat that backslashes etc. within the line will be mangled,
so treat this as pseudo code for reimplementation</p>
http://stackoverflow.com/questions/1825964/c-c-maximum-stack-size-of-program/1826072#18260721Answer by pixelbeat for C/C++ maximum stack size of programpixelbeat2009-12-01T13:01:53Z2009-12-01T13:01:53Z<p>stacks for threads are often smaller.
You can change the default at link time,
or change at run time also.
For reference some defaults are:</p>
<ul>
<li>glibc i386, x86_64 7.4 MB</li>
<li>Tru64 5.1 5.2 MB</li>
<li>Cygwin 1.8 MB</li>
<li>Solaris 7..10 1 MB</li>
<li>MacOS X 10.5 460 KB</li>
<li>AIX 5 98 KB</li>
<li>OpenBSD 4.0 64 KB</li>
<li>HP-UX 11 16 KB</li>
</ul>
http://stackoverflow.com/questions/375427/non-blocking-read-on-a-stream-in-python/1810950#18109500Answer by pixelbeat for Non-blocking read on a stream in python.pixelbeat2009-11-27T23:13:20Z2009-11-27T23:13:20Z<p>This allows you to pass a timeout to read()
<a href="http://www.pixelbeat.org/libs/subProcess.py" rel="nofollow">http://www.pixelbeat.org/libs/subProcess.py</a></p>
http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810923#18109232Answer by pixelbeat for Memorable 32-bit value as a constantpixelbeat2009-11-27T23:02:17Z2009-11-27T23:02:17Z<p>sed '/[^a-f]/d' < /usr/share/dict/words |
awk '{print length, $0}' | sort -n | cut -f2- -d' '</p>
http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804295#18042950Answer by pixelbeat for regex to remove prefix and another to upper case the first letterpixelbeat2009-11-26T15:24:39Z2009-11-27T00:23:32Z<p>This works using GNU sed 4.2.1</p>
<pre><code>sed 's/\[xx_/[/g; s/\[./\U&/g'
</code></pre>
http://stackoverflow.com/questions/1796968/linux-shell-bug/1796988#17969884Answer by pixelbeat for Linux shell bug?pixelbeat2009-11-25T13:43:41Z2009-11-25T13:49:41Z<p>common issue which is caused because you're piping into the while, which is therefore run in a subshell, which can't pass environment variables back to its parent. I'm guessing that "unix" is different in this regard as you're running a different shell there (ksh?)</p>
<p>piping to the while loop may not be required. could you use this idiom instead?</p>
<pre><code>for item in /tmp/$$.*; do
....
done
</code></pre>
<p>If you must use a subshell, then you'll have to do something external to the processes like:</p>
<pre><code>touch /tmp/file_found
</code></pre>
http://stackoverflow.com/questions/1790356/64-bit-versions-of-ftell-and-fseek/1790399#17903991Answer by pixelbeat for 64-bit versions of ftell and fseekpixelbeat2009-11-24T14:24:35Z2009-11-24T14:24:35Z<p><a href="http://www.pixelbeat.org/programming/gcc/c%5Fc++%5Fnotes.html#LFS" rel="nofollow">http://www.pixelbeat.org/programming/gcc/c%5Fc++%5Fnotes.html#LFS</a></p>
http://stackoverflow.com/questions/1787666/how-do-i-find-out-what-options-git-diff-uses-when-it-invokes-less/1789520#17895200Answer by pixelbeat for How do I find out what options git-diff uses when it invokes less?pixelbeat2009-11-24T11:35:48Z2009-11-24T11:35:48Z<p>See <a href="http://www.pixelbeat.org/scripts/idiff" rel="nofollow">http://www.pixelbeat.org/scripts/idiff</a> for portable ways to control less</p>
http://stackoverflow.com/questions/1763845/when-to-use-and-when-not-to-use-threads/1763931#17639310Answer by pixelbeat for When to use and when not to use threads?pixelbeat2009-11-19T15:05:57Z2009-11-19T15:05:57Z<p>I guess you're asking when to use threads over other concurrent programming methods.
Threads share everything by default, whereas other methods like concurrent processes need to explicitly communicate using higher level methods than just implicit shared memory. IMHO the initial ease and performance of implicit memory sharing is not worth the complexity it introduces.</p>
http://stackoverflow.com/questions/1747484/compare-semicolon-separated-data-in-2-files-using-shell-script/1747800#17478001Answer by pixelbeat for Compare semicolon separated data in 2 files using shell scriptpixelbeat2009-11-17T10:04:37Z2009-11-17T10:04:37Z<p>You want the difference as described at <a href="http://www.pixelbeat.org/cmdline.html#sets" rel="nofollow">http://www.pixelbeat.org/cmdline.html#sets</a></p>
<pre><code>sort -t';' -k1,1 temp1 temp1 temp2 | uniq -u > only_in_temp2
sort -t';' -k1,1 temp1 temp2 temp2 | uniq -u > only_in_temp1
</code></pre>
<p>Notes:</p>
<ul>
<li>Use join rather than uniq, as shown at the link above if you want to compare only particular fields</li>
<li>If the first field is fixed width then you don't need the -t';' -k1,1 params above</li>
</ul>
http://stackoverflow.com/questions/1732861/linux-iterate-over-files-in-directory/1732871#17328714Answer by pixelbeat for linux iterate over files in directorypixelbeat2009-11-14T01:09:11Z2009-11-14T01:09:11Z<pre><code>for d in "$input"/*
</code></pre>
http://stackoverflow.com/questions/1728330/how-to-get-processs-grandparent-id/1728386#17283864Answer by pixelbeat for How to get process's grandparent idpixelbeat2009-11-13T10:27:35Z2009-11-13T10:27:35Z<p>linux specific:</p>
<pre><code>os.popen("ps -p %d -oppid=" % os.getppid()).read().strip()
</code></pre>
http://stackoverflow.com/questions/1688952/python-or-bash-adding-at-beginning-of-line-and-at-end-of-line/1689011#16890117Answer by pixelbeat for python or bash - adding " at beginning of line and ", at end of linepixelbeat2009-11-06T17:15:35Z2009-11-06T22:24:05Z<pre><code>sed 's/.*/"&",/'
</code></pre>
http://stackoverflow.com/questions/1676426/how-to-check-the-ls-version/1688464#16884641Answer by pixelbeat for How to check the ls versionpixelbeat2009-11-06T15:52:45Z2009-11-06T15:52:45Z<p>As I mentioned above this seems to me to be the handiest method</p>
<pre><code>if ls --color -d . >/dev/null 2>&1; then
GNU_LS=1
elif ls -G -d . >/dev/null 2>&1; then
BSD_LS=1
else
SOLARIS_LS=1
fi
</code></pre>
<p>I've essentially this in my <a href="http://www.pixelbeat.org/scripts/l" rel="nofollow" title="l">l script</a>, which I use on various platforms to tweak ls output as I like</p>
http://stackoverflow.com/questions/1683976/multi-threaded-bash-programming-generalized-method/1687223#16872232Answer by pixelbeat for Multi-threaded BASH programming - generalized method?pixelbeat2009-11-06T12:17:41Z2009-11-06T12:17:41Z<pre><code>#adjust these as required
args_per_proc=1 #1 is fine for long running tasks
procs_in_parallel=4
xargs -n$args_per_proc -P$procs_in_parallel povray < list
</code></pre>
<p>Note the <code>nproc</code> command coming soon to coreutils will auto determine
the number of available processing units which can then be passed to -P</p>
http://stackoverflow.com/questions/1679798/how-to-open-a-file-with-the-standard-application/1679834#16798342Answer by pixelbeat for How to open a file with the standard application?pixelbeat2009-11-05T11:06:03Z2009-11-05T11:06:03Z<pre><code>if linux:
os.system('xdg-open "$file"') #works for urls too
else:
os.system('start "$file"') #a total guess
</code></pre>
http://stackoverflow.com/questions/110674/gcc-optimization-flags-for-intel-atom/379908#3799085Answer by pixelbeat for GCC optimization flags for Intel Atompixelbeat2008-12-19T01:53:18Z2009-11-03T15:37:03Z<p>I've a script that auto selects the appropriate flags for your CPU and compiler combination.
I've just updated it to support Intel Atom:</p>
<p><a href="http://www.pixelbeat.org/scripts/gcccpuopt" rel="nofollow">http://www.pixelbeat.org/scripts/gcccpuopt</a></p>
<p>Update:
I previously specified -march=prescott for Atom, but looking more into it
shows that Atom is merom ISA compliant, therefore -march=core2 is more appropriate.
Note however that Atoms are in-order cores, the last of those being the original pentium.
Therefore it's probably better to -mtune=pentium as well. Unfortunately I don't have
an Atom to test. I would really appreciate if anyone could benchmark the diff between:</p>
<pre><code>-march=core2 -mfpmath=sse -O3
-march=core2 -mtune=pentium -mfpmath=sse -O3
</code></pre>
<p>Update:
Here are a couple of nice articles on low level optimization for Atom:</p>
<ul>
<li><a href="http://virtualdub.org/blog/pivot/entry.php?id=286" rel="nofollow">http://virtualdub.org/blog/pivot/entry.php?id=286</a></li>
<li><a href="http://virtualdub.org/blog/pivot/entry.php?id=287" rel="nofollow">http://virtualdub.org/blog/pivot/entry.php?id=287</a></li>
</ul>
http://stackoverflow.com/questions/1647631/c-state-machine-design/1652677#16526770Answer by pixelbeat for C state-machine designpixelbeat2009-10-30T22:40:47Z2009-10-30T22:40:47Z<p>Saw this somewhere</p>
<pre><code>#define FSM
#define STATE(x) s_##x :
#define NEXTSTATE(x) goto s_##x
FSM {
STATE(x) {
...
NEXTSTATE(y);
}
STATE(y) {
...
if (x == 0)
NEXTSTATE(y);
else
NEXTSTATE(x);
}
}
</code></pre>
http://stackoverflow.com/questions/1644856/terminate-running-commands-when-shell-script-is-killed/1645062#16450622Answer by pixelbeat for Terminate running commands when shell script is killedpixelbeat2009-10-29T16:47:36Z2009-10-29T16:47:36Z<p>Send a signal to the group.
So instead of <code>kill 13231</code> do:</p>
<pre><code>kill -- -13231
</code></pre>
<p>If you're starting from python then have a look at:
<a href="http://www.pixelbeat.org/libs/subProcess.py" rel="nofollow">http://www.pixelbeat.org/libs/subProcess.py</a>
which shows how to mimic the shell in starting
and killing a group</p>
http://stackoverflow.com/questions/1622196/malloc-zeroing-out-memory/1622207#16222070Answer by pixelbeat for malloc zeroing out memory?pixelbeat2009-10-25T21:51:48Z2009-10-25T21:51:48Z<p>You definitely can't depend on it being 0.
malloc a larger chunk and dump it to see.</p>
http://stackoverflow.com/questions/1620946/cartesian-product-of-two-files-as-sets-of-lines-in-gnu-linux/1620993#16209935Answer by pixelbeat for Cartesian product of two files (as sets of lines) in GNU/Linuxpixelbeat2009-10-25T14:02:38Z2009-10-25T21:03:26Z<p>Here's shell script to do it</p>
<pre><code>while read a; do while read b; do echo "$a, $b"; done < file2; done < file1
</code></pre>
<p>Though that will be quite slow.
I can't think of any precompiled logic to accomplish this.
The next step for speed would be to do the above in awk/perl.</p>
<pre><code>awk 'NR==FNR { a[$0]; next } { for (i in a) print i",", $0 }' file1 file2
</code></pre>
<p>Hmm, how about this hacky solution to use precompiled logic?</p>
<pre><code>paste -d, <(sed -n "$(yes 'p;' | head -n $(wc -l < file2))" file1) \
<(cat $(yes 'file2' | head -n $(wc -l < file1)))
</code></pre>
http://stackoverflow.com/questions/1617568/remove-a-variety-of-lines-in-a-text-file/1617605#16176052Answer by pixelbeat for Remove a variety of lines in a text filepixelbeat2009-10-24T10:27:22Z2009-10-24T10:27:22Z<pre><code>sed '/^\*\{4\} .* \*\{4\}$/d'
</code></pre>
<p>or a bit looser</p>
<pre><code>sed '/^*\{4\}/d'
</code></pre>
http://stackoverflow.com/questions/1577987/what-are-the-merits-of-using-tt-i-b-big-and-small-tags/1578018#15780180Answer by pixelbeat for What are the merits of using tt, i, b, big, and small tags?pixelbeat2009-10-16T13:23:17Z2009-10-16T13:29:45Z<p>You shouldn't use these as they specify <strong>how</strong> to display rather than specifying the <strong>type</strong>. I.E. they couple the representation with the content which is bad for maintainability. So instead of <code><b></code> use <code><strong></code>. Then one can style <code><strong></code> in one place if required.</p>
http://stackoverflow.com/questions/1556348/python-run-a-process-with-timeout-and-capture-stdout-stderr-and-exit-status/1557514#15575141Answer by pixelbeat for python: run a process with timeout and capture stdout, stderr and exit statuspixelbeat2009-10-12T23:33:44Z2009-10-12T23:33:44Z<p>Note on linux with coreutils >= 7.0 you can prepend timeout to the command like:</p>
<pre><code>timeout 1 sleep 1000
</code></pre>
http://stackoverflow.com/questions/1511744/calling-grep-from-a-bash-script/1554176#15541760Answer by pixelbeat for calling grep from a bash scriptpixelbeat2009-10-12T12:03:20Z2009-10-12T12:03:20Z<p>Have a look at the <a href="http://www.pixelbeat.org/scripts/findrepo" rel="nofollow">findrepo</a> script which may give you some pointers</p>
http://stackoverflow.com/questions/1908610/how-to-get-pid-of-background-processComment by pixelbeat on How to get PID of background process?pixelbeat2009-12-15T16:27:43Z2009-12-15T16:27:43Z$! is correct. Are you sure you're starting the script in the BG? sample please.http://stackoverflow.com/questions/1836217/perl-or-something-else-m-problem/1836229#1836229Comment by pixelbeat on Perl (or something else) - ^M problempixelbeat2009-12-02T22:28:57Z2009-12-02T22:28:57Zworks for me with gnu sed on linux. What version are you using?http://stackoverflow.com/questions/1796968/linux-shell-bug/1796988#1796988Comment by pixelbeat on Linux shell bug?pixelbeat2009-11-25T13:56:57Z2009-11-25T13:56:57Zno <a href="http://stackoverflow.com/questions/496702/can-a-shell-script-set-environment-variables-of-the-calling-shell" rel="nofollow" title="can a shell script set environment variables of the calling shell">stackoverflow.com/questions/496702/…</a>http://stackoverflow.com/questions/1787666/how-do-i-find-out-what-options-git-diff-uses-when-it-invokes-less/1787689#1787689Comment by pixelbeat on How do I find out what options git-diff uses when it invokes less?pixelbeat2009-11-24T11:38:26Z2009-11-24T11:38:26Zgood call. Also echo the LESS environment varable from this script in case it's also usedhttp://stackoverflow.com/questions/1764291/raw-escape-in-python-except-last-charComment by pixelbeat on raw escape in python except last charpixelbeat2009-11-19T15:55:59Z2009-11-19T15:55:59Zseems like a bug to me. same thing with r"""C:\"""http://stackoverflow.com/questions/1748856/inconsistent-results-from-printf-with-long-long-int/1748879#1748879Comment by pixelbeat on Inconsistent results from printf with long long int?pixelbeat2009-11-17T14:15:12Z2009-11-17T14:15:12Z%llu. thx for linking my card :)http://stackoverflow.com/questions/1747484/compare-semicolon-separated-data-in-2-files-using-shell-script/1747800#1747800Comment by pixelbeat on Compare semicolon separated data in 2 files using shell scriptpixelbeat2009-11-17T11:45:00Z2009-11-17T11:45:00ZYes, as I commented you need to specify the field boundaries iff the fields are not fixed widthhttp://stackoverflow.com/questions/1587178/paste-in-vim-without-moving-the-cursor/1587184#1587184Comment by pixelbeat on Paste in Vim without moving the cursorpixelbeat2009-11-10T22:58:29Z2009-11-10T22:58:29ZNote when you repeat using . the mapping is ignored. Is that a vim bug, or is there a way to honor the mapping? This is especially useful when P rather than p is used, as Shift-P is awkward to repeathttp://stackoverflow.com/questions/1683976/multi-threaded-bash-programming-generalized-method/1687223#1687223Comment by pixelbeat on Multi-threaded BASH programming - generalized method?pixelbeat2009-11-09T22:31:27Z2009-11-09T22:31:27ZYes that will list the number of online CPUs in the system. The number available to a process may be smaller though due to a previous taskset for example.http://stackoverflow.com/questions/1676426/how-to-check-the-ls-version/1676532#1676532Comment by pixelbeat on How to check the ls versionpixelbeat2009-11-06T12:23:39Z2009-11-06T12:23:39Z-d just lists the directory not its contents. So now we've 4 comments explaining that rather than it being looked up/tried.http://stackoverflow.com/questions/1676426/how-to-check-the-ls-version/1676532#1676532Comment by pixelbeat on How to check the ls versionpixelbeat2009-11-05T13:49:00Z2009-11-05T13:49:00Zls --color -d . >/dev/null 2>&1 && gnu_ls=1 || bsd_ls=1http://stackoverflow.com/questions/1673807/how-to-execute-a-command-with-one-parameter-at-a-time-in-the-nix-shellComment by pixelbeat on How to execute a command with one parameter at a time in the *nix shell?pixelbeat2009-11-04T13:48:17Z2009-11-04T13:48:17Zgrep -l 'pattern' I presume. See also findrepo: <a href="http://www.pixelbeat.org/scripts/findrepo" rel="nofollow">pixelbeat.org/scripts/findrepo</a>http://stackoverflow.com/questions/1647548/deleting-smaller-sized-dupes-of-files/1648201#1648201Comment by pixelbeat on Deleting smaller sized dupes of filespixelbeat2009-10-30T10:55:40Z2009-10-30T10:55:40ZWe really need to add --head/--tail or equivalent to sort. It would be both functionaly and algorithmically beneficial
http://stackoverflow.com/questions/1644856/terminate-running-commands-when-shell-script-is-killed/1645062#1645062Comment by pixelbeat on Terminate running commands when shell script is killedpixelbeat2009-10-30T10:49:15Z2009-10-30T10:49:15ZIf started from a shell yes, otherwise you'll need to start as done in subProcess.pyhttp://stackoverflow.com/questions/1537673/how-do-i-forward-parameters-to-other-command-in-bash-script/1537695#1537695Comment by pixelbeat on How do I forward parameters to other command in bash script?pixelbeat2009-10-08T13:10:15Z2009-10-08T13:10:15Zactually "$@" is safer than $*