pixelbeat

2,289
reputation
412 views

Registered User

name pixelbeat
member for 1 year
seen yesterday
website
location Ireland
age
GNU coreutils maintainer

Knows a bit about Linux, C, Python and shell

Dec
17
revised A shell script problem for comparing difference between two files. [Linux]
make immune to data
Dec
17
answered A shell script problem for comparing difference between two files. [Linux]
Dec
15
comment How to get PID of background process?
$! is correct. Are you sure you're starting the script in the BG? sample please.
Dec
10
answered Find symlinks to certain directory or one of its subdirs
Dec
9
awarded  Popular Question
Dec
9
answered Bit operations in C
Dec
8
answered How to perform p4 submit operation without passing description inside the p4 submit form.
Dec
2
comment Perl (or something else) - ^M problem
works for me with gnu sed on linux. What version are you using?
Dec
2
answered Perl (or something else) - ^M problem
Dec
2
revised Simple way to colour alternate output lines in bash
add 256 color link
Dec
2
revised Simple way to colour alternate output lines in bash
added 127 characters in body
Dec
2
answered Simple way to colour alternate output lines in bash
Dec
2
revised Which most common extensions are there (or used) to ANSI C?
explicitly reference gcc C99 support
Dec
2
revised Which most common extensions are there (or used) to ANSI C?
link to more generic and up to date gcc docs
Dec
1
answered C/C++ maximum stack size of program
Nov
27
answered Non-blocking read on a stream in python.
Nov
27
answered Memorable 32-bit value as a constant
Nov
27
accepted Linux shell bug?
Nov
27
revised regex to remove prefix and another to upper case the first letter
update to match updated question
Nov
26
answered regex to remove prefix and another to upper case the first letter
Nov
25
comment Linux shell bug?
no stackoverflow.com/questions/496702/…
Nov
25
revised Linux shell bug?
deleted 2 characters in body; added 6 characters in body
Nov
25
answered Linux shell bug?
Nov
24
answered 64-bit versions of ftell and fseek
Nov
24
comment How do I find out what options git-diff uses when it invokes less?
good call. Also echo the LESS environment varable from this script in case it's also used
Nov
24
answered How do I find out what options git-diff uses when it invokes less?
Nov
19
comment raw escape in python except last char
seems like a bug to me. same thing with r"""C:\"""
Nov
19
answered When to use and when not to use threads?
Nov
19
accepted Compare semicolon separated data in 2 files using shell script
Nov
17
comment Inconsistent results from printf with long long int?
%llu. thx for linking my card :)
Nov
17
comment Compare semicolon separated data in 2 files using shell script
Yes, as I commented you need to specify the field boundaries iff the fields are not fixed width
Nov
17
answered Compare semicolon separated data in 2 files using shell script
Nov
16
accepted Multi-threaded BASH programming - generalized method?
Nov
14
awarded  Necromancer
Nov
14
accepted linux iterate over files in directory
Nov
14
answered linux iterate over files in directory
Nov
13
accepted How to get process’s grandparent id
Nov
13
answered How to get process’s grandparent id
Nov
10
comment Paste in Vim without moving the cursor
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
Nov
9
comment Multi-threaded BASH programming - generalized method?
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.
Nov
9
accepted How to check the ls version
Nov
7
awarded  Necromancer
Nov
6
revised python or bash - adding “ at beginning of line and “, at end of line
edited body
Nov
6
answered python or bash - adding “ at beginning of line and “, at end of line
Nov
6
answered How to check the ls version
Nov
6
comment How to check the ls version
-d just lists the directory not its contents. So now we've 4 comments explaining that rather than it being looked up/tried.
Nov
6
answered Multi-threaded BASH programming - generalized method?
Nov
5
comment How to check the ls version
ls --color -d . >/dev/null 2>&1 && gnu_ls=1 || bsd_ls=1
Nov
5
answered How to open a file with the standard application?
Nov
4
comment How to execute a command with one parameter at a time in the *nix shell?
grep -l 'pattern' I presume. See also findrepo: pixelbeat.org/scripts/findrepo