User pixelbeat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:56:53Z http://stackoverflow.com/feeds/user/4421 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1921805/a-shell-script-problem-for-comparing-difference-between-two-files-linux/1921890#1921890 1 Answer by pixelbeat for A shell script problem for comparing difference between two files. [Linux] pixelbeat 2009-12-17T13:43:58Z 2009-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 &lt;(cat -n a.txt) &lt;(cat -n b.txt) | wc -l </code></pre> http://stackoverflow.com/questions/1883839/find-symlinks-to-certain-directory-or-one-of-its-subdirs/1884242#1884242 0 Answer by pixelbeat for Find symlinks to certain directory or one of its subdirs pixelbeat 2009-12-10T21:39:27Z 2009-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#1873538 1 Answer by pixelbeat for Bit operations in C pixelbeat 2009-12-09T12:16:25Z 2009-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#1866404 0 Answer by pixelbeat for How to perform p4 submit operation without passing description inside the p4 submit form. pixelbeat 2009-12-08T11:35:05Z 2009-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#1836229 0 Answer by pixelbeat for Perl (or something else) - ^M problem pixelbeat 2009-12-02T22:14:52Z 2009-12-02T22:14:52Z <pre><code>sed 's/.\{1,\}/"&amp;",/' </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#1832279 2 Answer by pixelbeat for Simple way to colour alternate output lines in bash pixelbeat 2009-12-02T11:15:39Z 2009-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 ] &amp;&amp; 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#1826072 1 Answer by pixelbeat for C/C++ maximum stack size of program pixelbeat 2009-12-01T13:01:53Z 2009-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#1810950 0 Answer by pixelbeat for Non-blocking read on a stream in python. pixelbeat 2009-11-27T23:13:20Z 2009-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#1810923 2 Answer by pixelbeat for Memorable 32-bit value as a constant pixelbeat 2009-11-27T23:02:17Z 2009-11-27T23:02:17Z <p>sed '/[^a-f]/d' &lt; /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#1804295 0 Answer by pixelbeat for regex to remove prefix and another to upper case the first letter pixelbeat 2009-11-26T15:24:39Z 2009-11-27T00:23:32Z <p>This works using GNU sed 4.2.1</p> <pre><code>sed 's/\[xx_/[/g; s/\[./\U&amp;/g' </code></pre> http://stackoverflow.com/questions/1796968/linux-shell-bug/1796988#1796988 4 Answer by pixelbeat for Linux shell bug? pixelbeat 2009-11-25T13:43:41Z 2009-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#1790399 1 Answer by pixelbeat for 64-bit versions of ftell and fseek pixelbeat 2009-11-24T14:24:35Z 2009-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#1789520 0 Answer by pixelbeat for How do I find out what options git-diff uses when it invokes less? pixelbeat 2009-11-24T11:35:48Z 2009-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#1763931 0 Answer by pixelbeat for When to use and when not to use threads? pixelbeat 2009-11-19T15:05:57Z 2009-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#1747800 1 Answer by pixelbeat for Compare semicolon separated data in 2 files using shell script pixelbeat 2009-11-17T10:04:37Z 2009-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 &gt; only_in_temp2 sort -t';' -k1,1 temp1 temp2 temp2 | uniq -u &gt; 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#1732871 4 Answer by pixelbeat for linux iterate over files in directory pixelbeat 2009-11-14T01:09:11Z 2009-11-14T01:09:11Z <pre><code>for d in "$input"/* </code></pre> http://stackoverflow.com/questions/1728330/how-to-get-processs-grandparent-id/1728386#1728386 4 Answer by pixelbeat for How to get process's grandparent id pixelbeat 2009-11-13T10:27:35Z 2009-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#1689011 7 Answer by pixelbeat for python or bash - adding " at beginning of line and ", at end of line pixelbeat 2009-11-06T17:15:35Z 2009-11-06T22:24:05Z <pre><code>sed 's/.*/"&amp;",/' </code></pre> http://stackoverflow.com/questions/1676426/how-to-check-the-ls-version/1688464#1688464 1 Answer by pixelbeat for How to check the ls version pixelbeat 2009-11-06T15:52:45Z 2009-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 . &gt;/dev/null 2&gt;&amp;1; then GNU_LS=1 elif ls -G -d . &gt;/dev/null 2&gt;&amp;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#1687223 2 Answer by pixelbeat for Multi-threaded BASH programming - generalized method? pixelbeat 2009-11-06T12:17:41Z 2009-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 &lt; 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#1679834 2 Answer by pixelbeat for How to open a file with the standard application? pixelbeat 2009-11-05T11:06:03Z 2009-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#379908 5 Answer by pixelbeat for GCC optimization flags for Intel Atom pixelbeat 2008-12-19T01:53:18Z 2009-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#1652677 0 Answer by pixelbeat for C state-machine design pixelbeat 2009-10-30T22:40:47Z 2009-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#1645062 2 Answer by pixelbeat for Terminate running commands when shell script is killed pixelbeat 2009-10-29T16:47:36Z 2009-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#1622207 0 Answer by pixelbeat for malloc zeroing out memory? pixelbeat 2009-10-25T21:51:48Z 2009-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#1620993 5 Answer by pixelbeat for Cartesian product of two files (as sets of lines) in GNU/Linux pixelbeat 2009-10-25T14:02:38Z 2009-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 &lt; file2; done &lt; 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, &lt;(sed -n "$(yes 'p;' | head -n $(wc -l &lt; file2))" file1) \ &lt;(cat $(yes 'file2' | head -n $(wc -l &lt; file1))) </code></pre> http://stackoverflow.com/questions/1617568/remove-a-variety-of-lines-in-a-text-file/1617605#1617605 2 Answer by pixelbeat for Remove a variety of lines in a text file pixelbeat 2009-10-24T10:27:22Z 2009-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#1578018 0 Answer by pixelbeat for What are the merits of using tt, i, b, big, and small tags? pixelbeat 2009-10-16T13:23:17Z 2009-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>&lt;b&gt;</code> use <code>&lt;strong&gt;</code>. Then one can style <code>&lt;strong&gt;</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#1557514 1 Answer by pixelbeat for python: run a process with timeout and capture stdout, stderr and exit status pixelbeat 2009-10-12T23:33:44Z 2009-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#1554176 0 Answer by pixelbeat for calling grep from a bash script pixelbeat 2009-10-12T12:03:20Z 2009-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-process Comment by pixelbeat on How to get PID of background process? pixelbeat 2009-12-15T16:27:43Z 2009-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#1836229 Comment by pixelbeat on Perl (or something else) - ^M problem pixelbeat 2009-12-02T22:28:57Z 2009-12-02T22:28:57Z works for me with gnu sed on linux. What version are you using? http://stackoverflow.com/questions/1796968/linux-shell-bug/1796988#1796988 Comment by pixelbeat on Linux shell bug? pixelbeat 2009-11-25T13:56:57Z 2009-11-25T13:56:57Z no <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/&hellip;</a> http://stackoverflow.com/questions/1787666/how-do-i-find-out-what-options-git-diff-uses-when-it-invokes-less/1787689#1787689 Comment by pixelbeat on How do I find out what options git-diff uses when it invokes less? pixelbeat 2009-11-24T11:38:26Z 2009-11-24T11:38:26Z good call. Also echo the LESS environment varable from this script in case it's also used http://stackoverflow.com/questions/1764291/raw-escape-in-python-except-last-char Comment by pixelbeat on raw escape in python except last char pixelbeat 2009-11-19T15:55:59Z 2009-11-19T15:55:59Z seems like a bug to me. same thing with r&quot;&quot;&quot;C:\&quot;&quot;&quot; http://stackoverflow.com/questions/1748856/inconsistent-results-from-printf-with-long-long-int/1748879#1748879 Comment by pixelbeat on Inconsistent results from printf with long long int? pixelbeat 2009-11-17T14:15:12Z 2009-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#1747800 Comment by pixelbeat on Compare semicolon separated data in 2 files using shell script pixelbeat 2009-11-17T11:45:00Z 2009-11-17T11:45:00Z Yes, as I commented you need to specify the field boundaries iff the fields are not fixed width http://stackoverflow.com/questions/1587178/paste-in-vim-without-moving-the-cursor/1587184#1587184 Comment by pixelbeat on Paste in Vim without moving the cursor pixelbeat 2009-11-10T22:58:29Z 2009-11-10T22:58:29Z Note 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 repeat http://stackoverflow.com/questions/1683976/multi-threaded-bash-programming-generalized-method/1687223#1687223 Comment by pixelbeat on Multi-threaded BASH programming - generalized method? pixelbeat 2009-11-09T22:31:27Z 2009-11-09T22:31:27Z Yes 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#1676532 Comment by pixelbeat on How to check the ls version pixelbeat 2009-11-06T12:23:39Z 2009-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#1676532 Comment by pixelbeat on How to check the ls version pixelbeat 2009-11-05T13:49:00Z 2009-11-05T13:49:00Z ls --color -d . &gt;/dev/null 2&gt;&amp;1 &amp;&amp; gnu_ls=1 || bsd_ls=1 http://stackoverflow.com/questions/1673807/how-to-execute-a-command-with-one-parameter-at-a-time-in-the-nix-shell Comment by pixelbeat on How to execute a command with one parameter at a time in the *nix shell? pixelbeat 2009-11-04T13:48:17Z 2009-11-04T13:48:17Z grep -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#1648201 Comment by pixelbeat on Deleting smaller sized dupes of files pixelbeat 2009-10-30T10:55:40Z 2009-10-30T10:55:40Z We 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#1645062 Comment by pixelbeat on Terminate running commands when shell script is killed pixelbeat 2009-10-30T10:49:15Z 2009-10-30T10:49:15Z If started from a shell yes, otherwise you'll need to start as done in subProcess.py http://stackoverflow.com/questions/1537673/how-do-i-forward-parameters-to-other-command-in-bash-script/1537695#1537695 Comment by pixelbeat on How do I forward parameters to other command in bash script? pixelbeat 2009-10-08T13:10:15Z 2009-10-08T13:10:15Z actually &quot;$@&quot; is safer than $*