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 ...
554
votes
15answers
451k views
How to check if a directory exists in a shell script
What command can be used to check if a directory does or does not exist, within a shell script?
542
votes
21answers
156k views
What can I use to profile C++ code in Linux? [closed]
I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code?
504
votes
30answers
131k views
How to pretty-print JSON from the command line?
Is there a (unix) shell script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
foo: ...
368
votes
74answers
38k 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. ...
319
votes
10answers
167k views
In the 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" ...
281
votes
3answers
73k 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?
241
votes
28answers
248k 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?
241
votes
16answers
207k 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 ...
215
votes
19answers
151k 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 ...
197
votes
12answers
51k views
Is PowerShell ready to replace my cygwin shell on Windows?
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 ...
184
votes
10answers
168k 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 ...
181
votes
8answers
205k views
How can I concatenate string variables in Bash?
In PHP I would add strings together like this:
$foo = "Hello";
$foo .= " World";
So $foo would be "Hello World"
How would I do that in Bash?
113
votes
11answers
17k 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? ...
107
votes
6answers
75k 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 ...
102
votes
3answers
21k 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']
63
votes
4answers
10k views
How does this bash fork bomb work?
According to Wikipedia, the following is a very elegant bash fork bomb:
:(){ :|:& };:
How does it work?
57
votes
8answers
46k views
What is a bus error?
What does the "bus error" message mean, and how does it differ from a segfault?
55
votes
4answers
33k views
Unable to diff files in two separate branches in Git
I have FileA in branchA and FileB in branchB.
The problem is that I can access only one file at time.
I would like to be able to compare the files by FileMerge or meld, since they are the only ...
53
votes
15answers
32k 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 ...
53
votes
7answers
25k views
How Do I grep For non-ASCII Characters in UNIX
I have several very large XML files and I'm trying to find the lines that contain non-ASCII characters. I've tried the following:
grep -e "[\x{00FF}-\x{FFFF}]" file.xml
But this returns every line ...
42
votes
15answers
8k views
What are good Linux/Unix books for an advancing user? [closed]
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 ...
40
votes
25answers
23k 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 time ...
34
votes
4answers
42k views
Extract File Basename Without Path and Extension in Bash
Given file names like these:
/the/path/foo.txt
bar.txt
I hope to get
foo
bar
Why this doesn't work?
#!/bin/bash
fullfile=$1
fname=$(basename $fullfile)
fbname=${filename%.*}
echo $fbname
...
32
votes
13answers
55k views
How to pipe list of files returned by find command to cat to view all the files
I am doing a find and then getting a list of files. how do I pipe it to another utility like cat (so that cat displays the contents of all those files) and basically need to grep something from these ...
32
votes
6answers
21k views
How to get full path of a file?
Is there an easy way I can print the full path of "file.txt" ?
file.txt = /nfs/an/disks/jj/home/dir/file.txt
The command
dir> <command> file.txt
should print
...
22
votes
6answers
19k views
shell - get exit code of background process
I have a command CMD called from my main bourne shell script that takes forever.
I want to modify the script as follows:
Run the command CMD in parallel as a background process ($CMD &).
In ...
17
votes
11answers
4k views
“which in ruby”: Checking if program exists in $PATH from ruby
Hiya,
my scripts rely heavily on external programs and scripts.
I need to be sure that a program I need to call exists.
Manually, I'd check this using 'which' in the commandline.
Is there an ...
14
votes
4answers
14k views
What does the line “#!/bin/sh” mean in a UNIX shell script?
I was going through some shell script tutorials and found the following sample program:
#!/bin/sh
clear
echo "HELLO WORLD"
Can anyone please tell what is the significance of mentioning '!/bin/sh' ...
13
votes
7answers
36k views
How do you tell if a string contains another string in Unix shell scripting?
I want to write a Unix shell script that will do various logic if there is a string inside of another string. For example, if I am in a certain folder, branch off. Could someone please tell me how to ...
11
votes
5answers
12k views
Argument list too long error for rm, cp, mv commands
I have several hundred pdf's under a directory in UNIX. The name's of the pdf's are really long (approx. 60 char)
When I am trying to delete all pdf's together using below command:
rm -f *.pdf
I ...
10
votes
6answers
17k views
How to run PHP exec() as root?
I'm trying to build a firewall manager in PHP, but when I execute, <?php exec('iptables -L'); ?>, the result array is empty.
I have tried, <?php echo exec('whoami'); ?>, and the response ...
9
votes
5answers
6k views
How do you recursively delete all hidden files in a directory on UNIX?
I have been searching for a while, but can't seem to get a succinct solution. I have a Mac with a folder that I want to clean of all hidden files/directories - anything hidden. It used to be a Eclipse ...
6
votes
4answers
6k views
command line arguments from a file content
How do I turn file content into an argument for a Unix command?
Turning an argument into file content is done as:
echo ABC > file.txt
But the other direction?
6
votes
3answers
1k views
C/C++ environment initialization
A co-worker just asked me if it was safe to use getenv() in static initializers, that is, before main(). I looked in Stevens, and in the Posix Programmer's Guide, and the best I can find is
An ...
4
votes
4answers
3k views
Why always ./configure; make; make install; as 3 seperate steps?
Everytime you compile something from source, you go through the same 3 steps:
$ ./configure
$ make
$ make install
I understand, that it makes sense to divide the installing process into different ...
4
votes
8answers
11k views
In Linux, how to tell how much memory processes are using?
I think I may have a memory leak in my LAMP application (memory gets used up, swap starts getting used, etc.). If I could see how much memory the various processes are using, it might help me resolve ...
4
votes
1answer
1k views
UNIX sort with exponential values?
I have a csv file with 7 fields of data. I want to sort the 7th field in reverse numerial order (smallest values first). The 7th field of data looks like this:
0.498469643137
1
6.98112003175e-10
...
4
votes
2answers
2k views
remove all the files of zero size in specified directory [closed]
Thanks,in advance
I want to remove all the zero size files in specified directory,can u tell me the command how to do it on Ubuntu OS.
Thanks'
Mukthyar
4
votes
4answers
59 views
script not reading last line of a file
i have a file created in windows using notepad:
26453215432460
23543265235421
38654365876325
12354152435243
I have a script which will read every line, and create a command like ...
3
votes
2answers
2k views
Batch renaming files in command line and Xargs
So, I have the following structure:
.
..
a.png
b.png
c.png
I ran a command to resize them
ls | xargs -I xx convert xx -resize xx.jpg
Now my dir looks like this
.
..
a.png.jpg
a.png
b.png.jpg
...
2
votes
4answers
3k views
Extract list of file names in a zip archive when `unzip -l`
When I do unzip -l zipfilename, I see
1295627 08-22-11 07:10 A.pdf
473980 08-22-11 07:10 B.pdf
...
I only want to see the filenames. I try this
unzip -l zipFilename | cut -f4 -d" "
but I ...
2
votes
4answers
53 views
Delete a range of lines in a CSV file except a line inbetween the given range
How to delete a range of lines in a CSV file except a line(or few lines which or not consecutive) in between the given range... Lets say I need to delete the first five lines of a CSV file but keep ...
2
votes
2answers
33 views
unix command svn log to get just the files information
Just need the directory name and files changes information in svn log
This is my svn log
svn log -v http://test/svn/Demo/branches/HelloWorld/Batch/ --limit 2
...
2
votes
3answers
32 views
Need some help writing an if statement in UNIX bash scripting
I'm writing a reasonably lengthy script (or what I would consider lengthy - you could probably do it in a few hours). I basically have a file (named .restore.info) which contains files of names. In ...
2
votes
3answers
26 views
ORACLE: need to export table data without spaces between columns
Say i have Table A with columns
col1 col2 col3 col4
-------------------
sajal singh 28 IND
hello how are you
I want to export the data into a flat file ...
2
votes
2answers
24 views
How to delete a column/columns of a CSV file which has cell values with a string enclosed in double quotes
How can I delete a column from a CSV file which has comma separated value with a string enclosed in double quotes and a comma in between? I have a file 44.csv with 4 lines including the header like ...
2
votes
1answer
153 views
Error trying to install headless dropbox on unix server
Getting the below error trying to install dropbox in a unix headless environment
.dropbox-dist/dropbox: Syntax error: word unexpected (expecting ")")
Instructions followed: ...
1
vote
4answers
11k views
What does `$@` mean in a shell script?
What does a dollar sign followed by an ampersat mean in a shell script?
For example:
umbrella_corp_options $@
1
vote
4answers
524 views
How to detach a process from terminal in unix?
When I start a process in background in a terminal and some how if terminal gets closed then we can not interact that process any more. I am not sure but I think process also get killed. Can any one ...
1
vote
3answers
40 views
bash: read string into array bash with spaces preserved [duplicate]
I have string "hi how are you"
I want to put this string into an array as shown below. But i want to preserve spaces. Any ideas on how to do that?
a[0] a[1] a[2] 3 4 5 6 .... should ...