1,706 reputation
11026
bio website
location
age
visits member for 2 years, 3 months
seen 1 hour ago
stats profile views 231

1h
comment How to remove the last character from a bash grep output
@Det why thank you! :-) looks like you are learning unix stuff with an eye on thoroughness. that's the right approach so wish you good luck! ps: i should offer my apologies in advance in case i am wrong and you are a unix veteran just looking to fill a couple of gaps in knowledge. LOL!
1h
comment Difference between gdb, valgrind, strace, ltrace and apport
+1 for posting a succinct followup answer. i only knew about gdb. times are a changing ;)
6h
comment Useless use of cat?
there is the case for a unix-calculus on the lines of relational-calculus where you declaratively specify your pipeline whichever way on the lines of SQL and the script-engine optimizes the script expression and executes it mostly in kernel space. (analogy is not that much of a stretch if you consider the impact of sort in a pipeline). the Haskell lazy evaluation folks might also have some insights on how to best implement this in a less disk-oriented environment. i wonder how do they collapse their pipelines.
6h
comment Useless use of cat?
@JonathanLeffler neither did i imply you said that. our disagreement is indeed about the specific use of cat prior to a pipeline. it is probably an agree to disagree situation because the uselessness is SOLELY for performance reasons. i am not trivializing the performance implications. if it were java i would agree. but it is a scripting environment and it is unfair to disproportionately call out useless uses just for cat when the inefficiency equally applies to say: <file grep foo | grep bar and other constructs. i. e. "if i had a nickel for every optimizable pipeline..."
9h
revised Useless use of cat?
corrections to content
9h
comment Useless use of cat?
cs.vu.nl/~herbertb/papers/osreview2008-2.pdf - example of ongoing performance related work
10h
comment Useless use of cat?
good points. i have been uncharitable to < given its positionability and efficiency. and it does seem that commands that take multiple file arguments do so for reasons other than fluency. for example wc when given multiple arguments lists counts for each file. i suspect a future kernel will allow identity pipes in kernel space (link below), so cat single_file could eventually avoid copies. i still cannot find the cat useless by any stretch. if you are using grep with line numbers your pipeline is not appendable to any other pipeline. if it is vanilla grep, cat wins IMO.
10h
comment Useless use of cat?
i agree re < being more efficient. but seekability benefit does not apply because if a program needs to seek the choice to prefix a cat simply does not exist. re unread input, the file does effectively remains unread even with cat because the process blocks pretty soon if its output is not being consumed. STEPPING BACK, the debate is not which one is more efficient but which approach should you use. the mantra is to focus on correctness and the closely related idea of fragility first, efficiency second. i point out the insidious silent failures that can happen with pipelines.
10h
comment Useless use of cat?
it is not clear from your comment whether < is copying the file multiple times too.
11h
comment Useless use of cat?
to answer rhetorical questions, don't worry about overhead when scripting. if performance overhead is a concern write a custom program to avoid pipeline overhead. there is a duality between orthogonal libraries that you would use to write such a program and orthogonal command-line components that you use to script such a program. the command-line is for ad hoc, for quick and dirty. the libraries are for efficiency. and obviously the orthogonal unix commands are implemented using the same libraries.
11h
comment Useless use of cat?
note that < is merely syntactic sugar for cat single-file, so per this reasoning every unix command should be able to read single files. what is not clear is why the author does not apply the 3-copy-overhead does not apply to the multiple files case -- do they not need to be copied three times? if the author recommends every unix command implement its own file read, why stop at multiple files? why not have every unix command have the ability to read and concatenate multiple files? let's go a step further, why not have every unix command also grep and cut to avoid the pipeline overhead?
11h
revised Useless use of cat?
remove duplicate almightiness of unix
11h
comment How to remove the last character from a bash grep output
@Det my answer's now the accepted one; of course that's only one person's opinion other than me. thanks for the motivation to write it out.
11h
revised Useless use of cat?
removed snark
1d
comment How to determine the latest major and full kernel version string as compactly as possible
@Det if you pass on the buck you should pass back the blowback ;p
1d
comment How to determine the latest major and full kernel version string as compactly as possible
@Det i see you were simply passing on the buck, LOL!
1d
comment How to remove the last character from a bash grep output
@Det thanks for taking it positively. it is reasonable to say grep foo file | grep bar | wc and it is reasonable to say cat file | grep foo | grep bar | wc. what is not reasonable is to give out useless cat awards for the second. there are several specific points to preseve them in my thesis on the subject. perhaps you might not appreciate them now as i didn't when i was not as experienced. i got pissed off not at you but at the people who should know better than to initiate and support the practice. hope that makes sense.
1d
revised Useless use of cat?
clarified
1d
answered Useless use of cat?
1d
comment How to remove the last character from a bash grep output
@Det fyb above (forgot to tag you, just like somebody might forget to remove the input argument when composing pipelines and wonder why the output isn't as expected)