Tagged Questions
The Unix operating system is a general purpose OS that was developed by Bell Labs in the late 1960s and today exists in various versions. It is known for its large collection of simple command-line utilities which allow powerful file handling and text processing capabilities to be implemented via shell scripts.
262
votes
74answers
27k views
What are the dark corners of Vim your mom never told you about? [closed]
There is a plethora of questions where people talk about common tricks, notably "Vim+ctags tips and tricks".
However, I don't refer to commonly used shortcuts that someone new to Vim would find cool. ...
97
votes
3answers
32k views
What do 'real', 'user' and 'sys' mean in the output of time(1)?
$ time foo
real 0m0.003s
user 0m0.000s
sys 0m0.004s
$
What do 'real', 'user' and 'sys' mean in the output of time?
Which one is meaningful when benchmarking my app?
95
votes
14answers
91k views
Setting multiple jars in java classpath
Is there a way to include all the jar files within a directory in the classpath?
I'm trying java -classpath lib/*.jar:. my.package.Program and it is not able to find class files that are certainly in ...
94
votes
8answers
54k views
In the bash shell, what is “ 2>&1 ”?
In a unix shell, if I want to combine stderr and stdout into the stdout stream for further manipulation, I can append the following on the end of my command:
2>&1
So, if I want to use "head" ...
89
votes
17answers
75k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...
87
votes
13answers
32k views
git-upload-pack: command not found, how to fix this correctly
I have been using git to keep two copies of my project in sync, one is my local box, the other the test server.
This is an issue which occurs when I log onto our remote development server using ssh;
...
87
votes
23answers
11k views
Fastest way to get value of pi
Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using #defined constants ...
82
votes
7answers
3k views
Is it safe to parse a /proc/ file?
Well, this is going to be a short one...
I want to parse /proc/net/tcp/, but is it safe? I mean, how to open and read it and not be afraid, that some other process (or the OS) will be changing it in ...
77
votes
20answers
82k views
SED: How can I replace a newline (\n)?
I unsuccesfully tried:
sed 's#/\n# #g' file
sed 's#^$# #g' file
How to fix it?
74
votes
9answers
63k views
How do I list all cron jobs for all users?
Is there a command or an existing script that will let me view all of a *NIX system's scheduled cron jobs at once? I'd like it to include all of the user crontabs, as well as /etc/crontab, and ...
72
votes
36answers
4k views
What should a longtime Windows user know when starting to use Linux?
We've finally moved our websites to a decent host, and for the first time we have Shell Access.
I know very little about using Linux, I can navigate through the file system, read files with Vim and ...
72
votes
11answers
9k views
Getting root permissions on a file inside of vi?
Often while editing config files, I'll open one with vi and then when I go to save it realize that I didn't type
sudo vi filename
Is there any way to give vi sudo privileges to save the file? ...
70
votes
13answers
16k views
PowerShell vs. Unix Shells
I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.
The benefit of PowerShell would be that the scripts could be more easily used by ...
49
votes
14answers
58k views
Using getopts in bash shell script to get long and short command line options
I wish to have long and short forms of command line options invoked using my shell script.
I know that getopts can be used, but like in Perl, I have not been able to do the same with shell.
Any ideas ...
47
votes
15answers
41k views
Windows version of the Unix touch command
I'm looking for a Windows port of the UNIX touch command. I don't want to install an entire MKS toolkit just for the one tool. Is there a native port available somewhere or a command in Windows that ...
40
votes
6answers
2k views
I never really understood: what is POSIX?
What is POSIX? I read the Wikipedia article and I read it ever time I encounter the term. Fact is that I never really understood what it is.
Can anyone please explain it to me by explaining "the need ...
39
votes
12answers
4k views
Most tricky/useful commands for gdb debugger
Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
39
votes
10answers
4k views
how to find the location of the executable in C
Is there a way in C/C++ to find the location (full path) of the current executed program (the problem with argv[0] is that it does not give the full path).
Thanks.
39
votes
21answers
8k views
prepend to a file one liner shell?
This is probably a complex solution.
I am looking for a simple operator like ">>", but for prepending.
I am afraid it does not exist. I'll have to do something like
mv myfile tmp
cat myheader ...
36
votes
5answers
4k views
How does this bash fork bomb work?
According to Wikipedia, the following is a very elegant bash fork bomb:
:(){ :|:& };:
How does it work?
36
votes
12answers
15k views
How to make child process die after parent exits?
Suppose I have a process which spawns exactly one child process. Now when the parent process exits for whatever reason (normally or abnormally, by kill, ^C, assert failure or anything else) I want the ...
35
votes
16answers
4k views
What are good Linux/Unix books for an advancing user?
Are there any good books for a relatively new but not totally new *nix user to get a bit more in depth knowledge (so no "Linux for dummies")? For the most part, I'm not looking for something to read ...
33
votes
11answers
22k views
How do you get what a symbolic link points to without grep?
Say you have a symbolic link, i.e., a -> b. In *nix, is there a command that will simply output what 'a' points to (i.e., 'b') but with nothing else? Typically we do a ls -l and pipe it to grep or ...
33
votes
7answers
3k views
Equivalent of *Nix 'which' command in Powershell?
Does anyone know how to ask powershell where something is?
For instance "which notepad" and it returns the directory where the notepad.exe is run from according to the current paths.
33
votes
10answers
2k views
What should we do to prepare for 2038?
I would like to think that some of the software I'm writing today will be used in 30 years. But I am also aware that a lot of it is based upon the UNIX tradition of exposing time as the number of ...
33
votes
9answers
15k views
Is gettimeofday() guaranteed to be of microsecond resolution?
So I find myself porting a game that was originally written for the Win32 API to Linux (well, porting the OS X port of the Win32 port to Linux), and have implemented QueryPerformanceCounter by giving ...
32
votes
6answers
2k views
What does the number in brackets shown after unix command names mean?
E.g man(1), find(3), updatedb(2) ?
what do these numbers mean ?
31
votes
2answers
11k views
How do I check syntax in bash without running the script?
Is it possible to check a bash script syntax without executing it?
Using Perl, I can run perl -c 'script name', is there any equivalent command for bash scripts?
Thanks.
30
votes
5answers
19k views
How to display line numbers in less (gnu)? [closed]
Does somebody know the command to make less display line numbers in the left column?
29
votes
8answers
9k views
BASH: Possible to abort shell script if any command returns a non-zero value?
I have a Bash shell script that invokes a number of commands.
I would like to have the shell script automatically exit with a return value of 1 if any of the commands return a non-zero value.
Is this ...
29
votes
4answers
12k views
How do I write stderr to a file while using “tee” with a pipe?
I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any ...
29
votes
10answers
5k views
How do I daemonize an arbitrary script in unix?
I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon.
There are two common cases I'd like to deal with:
I have a script that should run forever. If it ever ...
28
votes
6answers
1k views
How does C code call assembly code (e.g. optimized strlen)?
I always read things about how certain functions within the C programming language are optimized by being written in assembly. Let me apologize if that sentence sounds a little misguided.
So, I'll ...
28
votes
12answers
25k views
count (non-blank) lines-of-code in bash
In Bash, how do I count the number of non-blank lines of code in a project?
25
votes
4answers
626 views
How does the #! work?
In a script you must include a #! on the first line followed by the path to the program that will execute the script (e.g.: sh, perl). As far as I know though, the # character denotes the start of a ...
25
votes
7answers
4k views
What is the reason for performing a double fork when creating a daemon?
I'm trying to create a daemon in python. I've found the following question, which has some good resources in it which I am currently following, but I'm curious as to why a double fork is necessary. ...
25
votes
4answers
22k views
How to convert UNIX timestamp to DateTime and vice versa?
As the title says really.
There is this example code, but then it starts talking about millisecond / nanosecond problems.
http://blogs.msdn.com/brada/archive/2004/03/20/93332.aspx
Edit: This is ...
24
votes
9answers
24k views
How can I use xargs to copy files that have spaces and quotes in their names?
I'm trying to copy a bunch of files below a directory and a number of the files have spaces and single-quotes in their names. When I try to string together find and grep with xargs, I get the ...
23
votes
7answers
1k views
How to Practice Unix Programming in C?
After five years of professional Java (and to a lesser extent, Python) programming and slowly feeling my CS education slip away, I decided I wanted to broaden my horizons / general usefulness to the ...
23
votes
5answers
8k views
C fopen vs open
Is there any reason (other than syntactic ones) that you'd want to use
FILE *fdopen(int fd, const char *mode);
or
FILE *fopen(const char *path, const char *mode);
instead of
int open(const ...
23
votes
6answers
25k views
What is the simplest way to SSH using Python?
What is the absolute simplest way to SSH to a remote server from a local Python (3.0) script, supply a login/password, execute a command and print the output to the Python console? I would rather not ...
23
votes
72answers
3k views
What was your biggest *nix blooper?
So I was thinking about bloopers I've made or have seen made in a *nix systems and was wondering what others think the worst blooper they made was? I couldn't find a similar question already asked ...
23
votes
8answers
31k views
List files recursively in linux with path relative to the current directory
This is similar to this question, but I want to include the path relative to the current directory in unix. If can do the following:
ls -LR | grep .txt
But it doesn't include the full paths. For ...
22
votes
13answers
2k views
How do you introduce unit testing into a large, legacy (C/C++) codebase?
We have a large, multi-platform application written in C. (with a small but growing amount of C++) It has evolved over the years with many features you would expect in a large C/C++ application:
...
22
votes
7answers
7k views
What's an easy way to read random line from a file in Unix command line?
What's an easy way to read random line from a file in Unix command line?
22
votes
7answers
19k views
What is a bus error?
What does the "bus error" message mean, and how does it differ from a segfault?
22
votes
10answers
4k views
What is the difference between a symbolic link and a hard link?
Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and how it differs from a ...
22
votes
22answers
4k views
Tracking down where disk space has gone on Linux?
When administering Linux systems I often find myself struggling to track down the culprit after a partition goes full. I normally use
du / | sort -nr
but on a large filesystem this takes a long ...
21
votes
1answer
185 views
What is the reason for having unreserved identifiers as built-in macros in gcc?
Today I stumbled upon a rather interesting compiler error:
int main() {
int const unix = 0; // error-line
return unix;
}
Gives the following message with gcc 4.3.2 (yes, ancient...):
error: ...
21
votes
1answer
3k views
How to read environment variable in node.js
Is there any way I can read environment variables in node.js code?
Like for example python's os.environ['HOME']