camh

2,080
Reputation
91 views

Registered User

Name camh
Member for 1 year
Seen 9 hours ago
Website
Location
Age
Nov
20
answered Can STDOUT and STDERR use different colors under XTerm / Konsole?
Nov
10
answered Executing for-each in bash
Nov
10
answered Putting a complete filesystem into revision control
Oct
27
comment Loopback adapter name in Linux
RFC3330 defines 127.0.0.0/8 as the subnet for loopback addresses. All it says about 127.0.0.1 is that it is ordinarily used as the loopback address. You could be using 127.0.1.1 as a loopback address if you want. -1 for not reading the RFC you linked to and then giving wrong advice.
Oct
27
comment Unix directory inodes - fragmentation, and dumping directory contents
Please specify which filesystem you are using.
Oct
19
comment How to parse /proc/pid/cmdline
I always believed they'd be NUL separated until I found a process where it wasn't. That was postgrey - a perl program using Net::Server which rewrites the command line, all in one argument.
Oct
19
comment How to parse /proc/pid/cmdline
The mutability of the argument vector by the program is why I objected to your statement. If you hadn't said "always" and emphasised it, I wouldn't have commented.
Oct
18
comment How to parse /proc/pid/cmdline
I added a link to a thread where I posted a script that contains my implementation. It wont handle an executable name with a space in it, but they're rare (so rare that I've never seen one)
Oct
18
revised How to parse /proc/pid/cmdline
Add link to debian-user thread containing script
Oct
18
answered How to parse /proc/pid/cmdline
Oct
18
comment How to parse /proc/pid/cmdline
This is wrong. Sometimes there are spaces separating the arguments - i.e. it's all in argv[0]. I know this because I have see this.
Oct
15
answered Problem in running a script
Oct
15
answered Create a user-group in linux using python
Oct
14
accepted C++ Overloading << Operator problem
Oct
14
answered C++ Overloading << Operator problem
Oct
10
answered How do we iterate through all elements of a set while inserting new elements to it?
Oct
9
accepted fread terminating mid-read at null values. Also reading in garbage past expected data.
Oct
9
answered fread terminating mid-read at null values. Also reading in garbage past expected data.
Oct
4
answered how to declare an array in python?
Oct
2
awarded  Enlightened
Oct
2
accepted Friend class and all its descendants
Oct
2
awarded  Nice Answer
Oct
2
accepted Bash script for manual routes and default gateway problem
Oct
2
answered Bash script for manual routes and default gateway problem
Oct
2
answered Friend class and all its descendants
Oct
1
comment Cannot access django app through ip address while accessing it through localhost
0.0.0.0:8000 binds to all interfaces, not just the external one, so it can still be accessed as localhost:8000
Oct
1
awarded  Yearling
Sep
23
comment Unix programming… fork() & execv() help… C Programming
What is the type of commandArgv?
Sep
23
answered Read data from pipe and write to standard out with a delay in between. Must handle binary files too.
Sep
19
comment List files with certain extensions with ls and grep
I can't see how this would work. ls without any options produces output in columns. Anchoring to the end of the line will not match properly.
Sep
19
revised List files with certain extensions with ls and grep
add nocaseglob. s/set -o/shopt -s/
Sep
19
comment List files with certain extensions with ls and grep
My mistake - that should be "shopt -s nullglob" not the set -o command
Sep
19
revised List files with certain extensions with ls and grep
added 141 characters in body
Sep
19
comment List files with certain extensions with ls and grep
In bash, you can do "set -o nullglob", and you wont get the errors.
Sep
19
answered How to rollover the standard output from bash?
Sep
19
answered List files with certain extensions with ls and grep
Sep
18
answered Finding the command for a specific PID in Linux from Python
Sep
16
comment Given a start, end, and increment value, I want an algorithm that counts up and down.
Really? A negative increment to mean decrement is a pretty common idiom. For something as simple as this, I personally find extraneous variables to be a distraction. YMMV.
Sep
16
comment More efficient: large array or many scalars
Consider using a couple of if statements, so you do not do n=n and idx=idx.
Sep
16
comment Given a start, end, and increment value, I want an algorithm that counts up and down.
The "incrementing" variable could be encoded in the sign of the "increment" variable.
Sep
15
comment Shell/Bash Command to get nth line of STDOUT
You should probably add "; exit" to that action. No point processing the rest of the lines when you're not going to do anything with them.
Sep
15
comment Shell/Bash Command to get nth line of STDOUT
head piped into tail? horrible. Multiple better ways to do it.
Sep
15
answered Vector Ranges in C++
Sep
11
accepted C++: Status and control pattern
Sep
10
accepted Problem with Awk & Grep
Sep
10
answered Problem with Awk & Grep
Sep
9
accepted How do touch typists navigate in vi?
Sep
9
answered How to return NULL from a method in a Template Class
Sep
9
answered How do touch typists navigate in vi?
Sep
9
comment How can I remove all non-word characters except the newline?
useless use of cat