Search Results

0
votes

How can I capture single keystrokes in a unix console app without blocking?

In Unix, whether on the system console or in an X terminal window, keyboard I/O goes through a virtual terminal. Device /dev/tty is the usual way, these days, of accessing a process's controlling …
0
votes

What’s the deal with all the different UIDs a process can have?

In addition to the real, effective, and saved UIDs, Unix systems with auditing enabled also have the audit UID. A process's AUID identifies the user who started the process; it is not changed by s …
1
vote

How does the ‘ls’ command work in Linux/Unix?

If you really want to understand the detailed innards of ls, look at the source code. You can follow tpgould's link to the Solaris source, or it's easy to find the source online from any Linux or …
0
votes

Maximum number of inodes in a directory?

As noted by Rob Adams, ls is sorting the files before displaying them. Note that if you are using NFS, the NFS server will be sorting the directory before sending it, and 2 million entries may wel …
0
votes

Unix C Shell Scripting printf help

I believe the pr(1) command with the -m option will help do what you want. Look at its man page to eliminate the header/trailer options and set the column widths. Also, I recommend you not …
0
votes

Most performant *nix system

I'd say UNICOS, but it's not so hot for network performance. Seriously, how much of a performance difference do you think you'll see between different *nix versions on the same hardware? L …
3
votes

What are replacement and new practices from sh to Bash?

For scripting, unless there's a specific reason to do otherwise, I limit myself to the Bourne constructs. They are maximally portable, and should run on systems that use bash, ksh, or even sh as t …
0
votes

New Unix Account Shell Setup

I used to consult for a lot of clients and was always moving from system to system. In that situation, I got used to using only the normal defaults. Well, I did prefer using ksh if it was availab …