The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
22
votes
6answers
22k views
Capturing stdout when calling Runtime.exec
When experiencing networking problems on client machines, I'd like to be able to run a few command lines and email the results of them to myself.
I've found Runtime.exec will allow me to execute ...
232
votes
27answers
234k 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?
58
votes
11answers
40k views
Asynchronous shell exec in PHP
I've got a PHP script that needs to invoke a shell script but doesn't care at all about the output. The shell script makes a number of SOAP calls and is slow to complete, so I don't want to slow down ...
113
votes
21answers
125k 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 ...
272
votes
18answers
288k views
How do I split a string on a delimiter in bash?
How do I split a string based on a delimiter in Bash?
I have this string stored in a variable:
IN="bla@some.com;john@home.com"
Now I would like to split the strings by ';' delimiter so that I have
...
70
votes
5answers
56k views
How to execute a command and get output of command within C++?
I am looking for a way to get the output of a command when it is run from within a C++ program. I have looked at using the system() function, but that will just execute a command. Here's an example ...
41
votes
9answers
85k views
How to run Unix shell script from java code?
It is quite simple to run a Unix command from java.
Runtime.getRuntime().exec(myCommand);
But is it possible to run a Unix shell script from java code? If yes, would it be a good practice to run a ...
302
votes
10answers
158k 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" ...
176
votes
10answers
209k views
how to use ssh to run shell script on a remote machine? [closed]
Could you please suggest me how to run a shell script on remote machine?
I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B.
126
votes
19answers
75k views
Why doesn't “cd” work in a bash shell script?
I'm trying to write a small script to change the current directory to my project directory:
#!/bin/bash
cd /home/tree/projects/java
I saved this file as proj, changed the chmod, copied it to ...
4
votes
4answers
4k views
Arrays, linked lists and other data structures in cmd.exe (batch) script
I was playing with cmd.exe, but in its help I didn't find any info, how to define arrays.
I have found, how to define simple variables:
set a = 10
echo %a%
But, I want to create arrays, linked ...
80
votes
10answers
27k views
Why do people write #!/usr/bin/env python on the first line of a Python script?
It seems to me like the files run the same without that line.
195
votes
15answers
58k views
Check if a program exists from a bash script
How would I validate that a program exists? which would then either return an error and exit or continue with the script.
It seems like it should be easy, but it's been stumping me.
16
votes
8answers
15k views
Is there a way to use shell_exec without waiting for the command to complete?
I have a process intensive task that I would like to run in the background.
The user clicks on a page, the PHP script runs, and finally, based on some conditions, if required, then it has to run a ...
159
votes
9answers
84k views
How do I iterate over a range of numbers in bash?
How do I iterate over a range of numbers in bash when the range is given by a variable?
I know I can do this (called "sequence expression" in the bash documentation):
for i in {1..5}; do echo $i; ...
44
votes
14answers
15k views
Quick-and-dirty way to ensure only one instance of a shell script is running at a time
What's a quick-and-dirty way to make sure that only one instance of a shell script is running at a given time?
53
votes
5answers
47k views
Running shell command from python and capturing the output
I want to write a function that will execute a shell command and return it's output as a string, no matter, is it an error or success message. I just want to get the same result that I would have ...
104
votes
17answers
75k views
Best way to kill all child processes
I basically want to kill a whole process tree. What is the best way to do this using any common scripting languages. I am looking for a simple solution.
169
votes
8answers
95k views
converting string to lower case in bash shell scripting
Is there a way in bash shell scripting so that I can convert a string into lower case string. For example,
if $a = "Hi all"
I want to convert it to
$a = "hi all"
Thanks a lot for your help
34
votes
12answers
60k views
How to parse XML in Bash?
Ideally, what I'd like to be able to do is:
cat xhtmlfile.xhtml |
getElementViaXPath --path='/html/head/title' |
sed -e 's%(^<title>|</title>$)%%g' > titleOfXHTMLPage.txt
24
votes
2answers
20k views
Want to invoke a linux shell command from Java
I am trying to exec some linux commands from Java code. Actualy the code that I use is useing redirection (>&) and pipe simbols (|). How my Java code should be to be able to invoke that command as ...
81
votes
12answers
17k views
How to programmatically determine the current checked out Git branch
In a Unix or GNU scripting environment (e.g. a Linux distro, Cygwin, OSX), what is the best way to determine which Git branch is currently checked out in a working directory?
One use of this ...
62
votes
9answers
104k views
Extract substring in bash
Looking for a solution in bash (will be part of a script).
Given a filename in the form "someletters_12345_moreleters.ext", I want to extract the 5 digits and put them into a variable.
So to ...
21
votes
10answers
7k views
Is there a way to change another process's environment variables?
On Unix, is there any way that one process can change another's environment variables (assuming they're all being run by the same user)? A general solution would be best, but if not, what about the ...
14
votes
3answers
16k views
Why do I get a “sqlite3: not found” error on a rooted Nexus One when I try to open a database using the adb shell?
# sqlite3 /data/data/com.moodme.android/databases/moodme
sqlite3 /data/data/com.moodme.android/databases/moodme
sqlite3: not found
25
votes
3answers
21k views
ShellExecute equivalent in .NET
I'm looking for the .NET-preferred way of performing the same type of thing that ShellExecute does in Win32 (opening, printing, etc. for arbitrary file types).
I've been programming Windows for over ...
1
vote
1answer
404 views
How to extrace pg_backend_pid from postgresql in shell script and pass it to another process?
I need to run bin/psql on the command line (or script) and print its pg_backend_pid out, so that the pg_backgroud_pid can be passed to another process (run by root) as command line arguement. The ...
81
votes
7answers
18k views
How to save a Python interactive session?
I find myself frequently using Python's interpreter to work with databases, files, etc -- basically a lot of manual formatting of semi-structured data. I don't properly save and clean up the useful ...
39
votes
9answers
15k views
Elegant way to search for UTF-8 files with BOM?
For debugging purposes, I need to recursively search a directory for all files which start with a UTF-8 byte order mark (BOM). My current solution is a simple shell script:
find -type f |
while read ...
83
votes
19answers
78k views
How do I test if a variable is a number in bash?
I just can't figure out how do I make sure an argument passed to my script is a number or not.
All I want to do is something like this:
test *isnumber* $1 && VAR=$1 || echo "need a number"
...
32
votes
9answers
23k views
How to escape os.system() calls in Python?
When using os.system() it's often necessary to escape filenames and other arguments passed as parameters to commands. How can I do this? Preferably something that would work on multiple operating ...
44
votes
14answers
23k views
BASH: Convert absolute path into relative path given a current directory
absolute="/foo/bar"
current="/foo/baz/foo"
# magic
relative="../../bar"
Can you help me with magic? (Hopefully not too complicated code...)
35
votes
5answers
26k views
Redirect STDERR / STDOUT of a process AFTER it's been started, using command line?
In the shell you can do redirection, > <, etc., but how about AFTER a program is started?
Here's how I came to ask this question: a program running in the background of my terminal keeps ...
79
votes
9answers
77k views
Exit Shell Script Based on Process Exit Code
I have a shell script that executes a number of commands. How do I make the shell script exit if any of the commands exit with a non-zero exit code?
33
votes
7answers
51k views
How to stop java process gracefully?
How to stop java process gracefully in Linux and Windows?
When does Runtime.getRuntime().addShutdownHook gets called, and when it does not?
What about finalizers, do they help here?
Can I send some ...
38
votes
3answers
6k views
How to detect if my shell script is running through a pipe?
How do I detect from within a shell script if its standard output is targetting a terminal or if it's piped to another process? (Case in point: I'd like to add escape codes to colorize output, but ...
33
votes
12answers
42k views
Associative arrays in Shell scripts
We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?
66
votes
11answers
88k views
Can a shell script set environment variables of the calling shell?
I'm trying to write a shell script that, when run, will set some environment variables that will stay set in the caller's shell.
setenv FOO foo
in csh/tcsh, or
export FOO=foo
in sh/bash only set ...
26
votes
10answers
13k views
What does $$ mean in the shell?
I once read that one way to obtain a unique filename in a shell for temp files was to use a double dollar sign ($$). This does produce a number that varies from time to time... but if you call it ...
12
votes
5answers
16k views
Parallel execution of shell processes
Is there a tool available to execute several process in parallel in a Windows batch file? I have found some interesting tools for Linux (parallel and PPSS), however, I would need a tool for Windows ...
49
votes
6answers
44k views
Shell Script: How to pass command line arguments to an UNIX alias?
How do I pass the command line arguments to an alias. Here is a sample:
alias mkcd='mkdir $1; cd $1;'
But in this case the $xx is getting translated at the alias creatin time and not at the ...
6
votes
1answer
6k views
Running Shell commands though java code on Android?
Took me a while but I came back to this project with greater understanding of how to code. Here's a working way to do this for future reference of whoever
Define the string
String[] commands = ...
10
votes
6answers
16k 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 ...
524
votes
15answers
431k 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?
139
votes
28answers
61k views
Shell command to sum integers, one per line?
I am looking for a command that will accept as input multiple lines of text, each line containing a single integer, and output the sum of these integers.
As a bit of background, I have a log file ...
51
votes
11answers
80k views
How do I send a file as an email attachment using Linux command line?
I've created a script that runs every night on my Linux server that uses mysqldump to back up each of my MySQL databases to .sql files and packages them together as a compressed .tar file. The next ...
23
votes
11answers
16k views
Is there an Eclipse plugin to run system shell in the Console?
Do you know of any Eclipse plugin to run a system shell in the included console?
It would be awesome. Dolphin, KDE's file navigator, has this feature, you can press F4 and a console shows located on ...
18
votes
10answers
7k views
How do I manipulate $PATH elements in shell scripts?
Is there a idiomatic way of removing elements from PATH-like shell variables?
That is I want to take
PATH=/home/joe/bin:/usr/local/bin:/usr/bin:/bin:/path/to/app/bin:.
and remove or replace the ...
59
votes
6answers
70k views
Logical operators (“and”, “or”) in DOS batch
How would you implement logical operators in DOS Batch files?
53
votes
24answers
15k 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 ...
