Tagged Questions
132
votes
10answers
167k views
Split string based on 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
...
23
votes
6answers
24k views
How do I write a bash script to restart a process if it dies?
I have a python script that'll be checking a queue and performing an action on each item:
# checkqueue.py
while True:
check_queue()
do_something()
How do I write a bash script that will check ...
22
votes
15answers
24k views
URLEncode from a bash script
I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters are processed ...
59
votes
13answers
33k views
In the bash script how do I know the script file name?
How can I determine the name of the bash script file inside the script itself?
Like if my script is in file runme.sh, than how would I make it to display "You are running runme.sh" message without ...
7
votes
6answers
1k views
bash: silently kill background function process
shell gurus,
I have a bash shell script, in which I launch a background function, say foo(), to display a progress bar for a boring and long command:
foo()
{
while [ 1 ]
do
...
99
votes
9answers
95k views
How do I tell if a file does not exist in bash?
I've used the following script to see if a file exists:
#!/bin/bash
FILE=$1
if [ -f $FILE ];
then
echo "File $FILE exists."
else
echo "File $FILE does not exist."
fi
What's the correct ...
29
votes
8answers
19k views
How to resolve symbolic links in a shell script
Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username ...
12
votes
10answers
6k views
Delete all but the most recent X files in bash
Is there a simple way, in a pretty standard UNIX environment with bash, to run a command to delete all but the most recent X files from a directory?
To give a bit more of a concrete example, imagine ...
32
votes
3answers
20k views
How do I parse command line arguments in bash?
Say I have a script that gets called with this line:
./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile
or this one:
./myscript -v -f -d -o /fizz/someOtherFile ./foo/bar/someFile
What's ...
7
votes
8answers
4k views
Recursively rename files using find and sed
I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought ...
7
votes
7answers
578 views
Is it good style to call bash commands within a Python script using os.system(“bash code”)?
I was wondering whether or not it is considered a good style to call bash commands within a Python script using os.system(). I was also wondering whether or not it is safe to do so as well.
I know ...
2
votes
4answers
291 views
How to handle commas within a CSV file being read by bash script
I'm creating a bash script to generate some output from a CSV file (I have over 1000 entries and don't fancy doing it by hand...).
The content of the CSV file looks similar to this:
Australian ...
2
votes
3answers
756 views
Linux scripting: hiding user input on terminal
I have bash script like the following:
#!/bin/bash
echo "Please enter your username";
read username;
echo "Please enter your password";
read password;
I want that when the user types the password ...
1
vote
3answers
536 views
Get name of directory wher script is executed
I have some script, that uses files in directories around it. It uses
dirname $0
command.
And it should work from any directory from where I will run this script, but when I run symbolic link ...
61
votes
9answers
61k views
How do I prompt for input in a Linux shell script?
I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
19
votes
16answers
6k views
Can anyone recommend a good modern alternative to bash?
Bash is getting a little long-in-the-tooth. Windows has PowerShell (formerly known as Monad), which is capable of dealing with richer objects than just lines of text. Is there any equivalent new ...
7
votes
5answers
769 views
Any interesting uses of Makefiles to share?
"make" is not only useful for building your programming project, but it seems to be under-used in other areas.
For example, many shell scripts can be rewritten as Makefiles to allow independent parts ...
16
votes
2answers
17k views
how does ` cat << EOF` work in bash?
I needed to write a script to enter multi-line input to a program (psql)
After a bit of googling, I found the following syntax works:
cat << EOF | psql ---params
BEGIN;
`pg_dump ...
8
votes
8answers
856 views
Is there an advantage to using Bash over Perl or Python? [closed]
Hey I've been using Linux for a while and thought it was time to finally dive into shell scripting.
The problem is I've failed to find any significant advantage of using Bash over something like Perl ...
6
votes
2answers
907 views
Getting ID of an instance newly launched with ec2-api-tools
I'm launching an EC2 instance, by invoking ec2-run-instances from simple a bash script, and want to perform further operations on that instance (e.g. associate elastic IP), for which I need the ...
2
votes
3answers
2k views
in linux terminal, how do I show the folder's last modification date, taking its content into consideration?
So here's the deal. Let's say I have a directory named "web", so
$ ls -la
drwx------ 4 rimmer rimmer 4096 2010-11-18 06:02 web
BUT inside this directory, web/php/
$ ls -la
-rw-r--r-- 1 rimmer ...
3
votes
7answers
266 views
Can a shell script indicate that its lines be loaded into memory initially?
This is a little thing that bothers me every now and then:
I write a shell script (bash) for a quick and dirty job
I run the script, and it runs for quite a while
While it's running, I edit a few ...
3
votes
2answers
363 views
Difference between launching a script with ./script.sh and . ./script.sh
Please tell me what is the difference in bash shell between launching a script with
./script.sh and . ./script.sh?
0
votes
1answer
149 views
How to echo text and have output from a command be sent to a file in parallel
I would like to echo text and also remotely ping a computer and have the output be sent to a log file. I also need to do this in parallel but I am having some trouble with how the output is being ...
4
votes
2answers
1k views
Bash: Split text-file into words with non-alphanumeric characters as delimiters
Lets say "textfile" contains the following:
lorem$ipsum-is9simply the.dummy text%of-printing
and that you want to print each word on a separate line. However, words should be defined not only by ...
3
votes
7answers
857 views
Extract version number from file in shell script
I'm trying to write a bash script that increments the version number which is given in
{major}.{minor}.{revision}
For example.
1.2.13
Is there a good way to easily extract those 3 numbers using ...
3
votes
3answers
735 views
$$ in a script vs $$ in a subshell
$$ gives process id of the script process when used in a script, like this:
Example 1
#!/bin/bash
# processid.sh
# print process ids
ps -o cmd,pid,ppid
echo "The value of \$\$ is $$"
$ ...
3
votes
4answers
2k views
Bash - remove the last line from a file
I have a file, foo.txt, containing the following lines:
a
b
c
I want a simple command that results in the contents of foo.txt being:
a
b
2
votes
1answer
120 views
Sed command causing asian characters to be printed to file
This is a follow up problem to a question I posed earlier. Basically when I do this:
sed '/Q/{
s/Q//g
r /Users/ericbrotto/Desktop/question.txt
}' Commision.txt
everything is fine, but the new ...
2
votes
2answers
823 views
Quoting not respected inside a bash variable
I'm storing the arguments to a command in a variable. The final command I want is:
mock -r myconfig --define "debug_package %{nil}" --resultdir results --rebuild mypackage.src.rpm
Here's my ...
2
votes
3answers
520 views
What happens when I execute a unix shell script using a '.' command?
For e.g., when I say ". .bashrc" on my linux command prompt, is there a corresponding binary/script that gets executed in place of the first dot? If the dot itself is a command, where is its location?
...
1
vote
4answers
274 views
Shell/Bash shortcut for bulk renaming of files in a folder(linux)
Is there a shortcut in Shell/Bash that can rename all the files in a folder based on a regex or some other criteria. What I am looking for here is in my folder documents, that has lets say a 100 text ...
0
votes
2answers
196 views
How to extract the lines between patterns?
I have a file with format like :
[PATTERN]
line1
line2
line3
.
.
.
line
[PATTERN]
line1
line2
line3
.
.
.
line
[PATTERN]
line1
line2
line3
.
.
.
line
I want to extract the following blocks from ...
0
votes
2answers
1k views
Opening multiple tabs in gnome terminal with complex commands from a cycle
I have a command that needs to be called like this:
command "complex argument"
If I want to run gnome-terminal passing it this argument, it goes like this:
gnome-terminal -e 'command "complex ...
0
votes
4answers
1k views
How to extract from a file text between tokens using bash scripts
I was reading this question: Extract text from between 2 tokens in a text file using bash
because I have a very similar problem...
I have to extract (and save it to $variable before printing) text in ...
0
votes
3answers
813 views
Bash: Terminate on Timeout/File Overflow while Executing Command
I'm writing a mock-grading script in bash. It's supposed to execute a C program which will give some output (which I redirect to a file.) I'm trying to (1) make it timeout after a certain duration and ...
41
votes
7answers
36k views
How to tell if a string is not defined in a bash shell script?
If I want to check for the null string I would do
[ -z $mystr ]
but what if I want to check whether the variable has been defined at all? Or is there no distinction in bash scripting?
18
votes
8answers
4k views
How to simulate the environment cron executes a script with?
I normally have several problems with how cron executes scripts as they normally don't have my environment setup. Is there a way to invoke bash(?) in the same way cron does so I could test scripts ...
19
votes
10answers
7k views
Best way to simulate “group by” from bash
Suppose you have a file that contains IP addresses, one address in each line:
10.0.10.1
10.0.10.1
10.0.10.3
10.0.10.2
10.0.10.1
You need a shell script that counts for each IP address how many ...
12
votes
4answers
5k views
Running A Bash Script Over SSH
I'm trying to write a Bash script that will SSH into a machine and create a directory. The long-term goal is a bit more complicated, but for now I'm starting simple. However, as simple as it is, I ...
12
votes
4answers
17k views
Find and Replace Inside a Text File from a Bash Command
Whats the simplest way to do a find and replace for a given input string, say "abc", and replace with another string, say "XYZ" - the the file, /tmp/file.txt?
I am wrtting an app and using IronPython ...
9
votes
8answers
20k views
How to determine file type in bash script?
I am writing a nightly build script in bash.
Everything is fine and dandy except for one little snag:
#!/bin/bash
for file in "$PATH_TO_SOMEWHERE"; do
if [ -d $file ]
then
...
9
votes
4answers
4k views
WAIT for “any process” to finish
Is there any built in feature in bash to wait for any process to finish?
The wait command only allows one to wait for child processes to finish.
I would like to know if there is any way to wait for ...
10
votes
5answers
5k views
BASH copy all files except one
I would like to copy all files out of a dir except for one name Default.png. It seems that there are a number of ways to do this. What seems the most effective to you?
9
votes
3answers
5k views
Bash string difference
I'm trying to find a way to determine the difference between two strings in my script. I could easily do this with diff or comm, but I'm not dealing with files and I'd prefer not to output them to ...
4
votes
9answers
5k views
How to check in a bash script if something is running and exit if it is
I have a script that runs every 15 minutes but sometimes if the box is busy it hangs and the next process will start before the first one is finished creating a snowball effect. How can I add a couple ...
4
votes
5answers
997 views
Renaming and Moving Files in Bash or Perl
HI, I'm completely new to Bash and StackOverflow.
I need to move a set of files (all contained in the same folder) to a target folder where files with the same name could already exist.
In case a ...
3
votes
2answers
64 views
substituting a string in place of variable in shell
I pass a string as an argument to a shell script. and the shell script should tell me if the passed argument is a variable
something like this
if [ ! -z ${$1} ] ; then
echo yes! $1 is a variable ...
10
votes
5answers
3k views
How can I ssh directly to a particular directory?
I often have to login to one of several servers and go to one of several directories on those machines. Currently I do something of this sort:
localhost ~]$ ssh somehost
Welcome to somehost!
...
7
votes
8answers
2k views
bash: get list of commands starting with a given string
Is it possible to get, using Bash, a list of commands starting with a certain string?
I would like to get what is printed hitting <tab> twice after typing the start of the command and, for ...