Tagged Questions
1
vote
3answers
1k views
Extract data from HTML table with BASH script
I am trying to create a BASH script what would extract the data from HTML table.
Below is the example of table from where I need to extract data:
<table border=1>
<tr>
...
2
votes
2answers
13k views
How to run sftp command with a password from bash script
I need to transfer a log file every night to a remote host using sftp from a Linux host. I have been provided credentials for the same from my operations group. However since I don't have control over ...
0
votes
1answer
53 views
merging multiple mp3 files
I am looking for a way to automate the merging of any mp3 files found within a specified folder in windows. Is there any script that exists to accomplish this task? I am using a voice recording ...
2
votes
3answers
817 views
Print lines from one file that are not contained in another file
I wish to print lines that are in one file but not in another file. However, neither files are sorted, and I need to retain the original order in both files.
contents of file1:
string2
string1
...
2
votes
2answers
54 views
How to pass PHP variables to Shell Script? [closed]
Possible Duplicate:
pass parameters to php with shell
I am running a php script within shell script as
#! /bin/sh
php file.php
Shell will run the script and display the output of the ...
1
vote
1answer
102 views
How to Create several files from a list in a text file?
Say I have a list in a file which contains filenames (without spaces):
filename
othername
somethingelse
...
Each line followed by a CR, One "filename" per line
Is there some kind of touch script ...
1
vote
3answers
458 views
Testing a bash shell script
Can someone explain how to test for a bash shell script?
For example i've got a .sh file with this code in it...
#!/bin/sh
for file in *.txt; do
mv "$file" "`basename $file .txt`.doc"
done
...
1
vote
4answers
1k views
Shell script: Ensure that script isn't executed if already running
I've set up a cronjob to backup my folders properly which I am quite proud of. However I've found out, by looking at the results from the backups, that my backup script has been called more than once ...
0
votes
1answer
67 views
Bash and Script help generating files with variable content
Extending this question: How to Create several files from a list in a text file?
Summary:
cat file_full_of_files_names | tr ' \t' '\n\n' | while read filename; do
if test -f "$filename"; then
echo ...
3
votes
4answers
192 views
copy many files (same name) contained in different father folder
Hi guys I have a question about unix command line. I have many files like these:
/f/f1/file.txt
/f/f2/file.txt
/f/f3/file.txt
and so on...
I'd like copy all file.txt with their father folder in ...
1
vote
1answer
135 views
piping bash input arguments in egrep's regular expression
here is the script that I am trying to run
#!/bin/bash
charlist=$1 #possible input:cat
wordlength=$2 #possible input: 3
cat ./nounlist | egrep \b[${charlist}]\b{${wordlength}}
output: nothing.# ...
1
vote
1answer
296 views
BASH SCRIPT: copy many files (same name) contained in different father folder
I tried to turn into a bash script the Jaypal answer
(see here)
in this way:
#!/bin/bash
pwd
mkdir -v ../g
shopt -s globstar
for file in ./**/file.txt
do
echo "will copy $file"
cp -v ...
1
vote
1answer
85 views
Function for ip reserved addresses checking
I have a list of ip adrresses. I want to know if any of them is a reserved address (ref: http://en.wikipedia.org/wiki/Reserved_IP_addresses ). For my works I'm using awk so I'm wondering if there are ...
1
vote
2answers
76 views
Embedding executable python script in python string
If you are a bash/posix sh wizard you will know the $(command substition) feature in bash, which could even be inserted in a string. For example,
$ echo "I can count: $(seq 1 10 | tr -d '\n')"
I ...
0
votes
1answer
79 views
shell script with synchronization
I have to write a script where I take a tcpdump on my machine and on a remote machine "simultaneously". That is the beginning of capture (0th second) should be simultaneous, so that I can compare the ...
6
votes
4answers
908 views
Bash : iterate over list of files with spaces
I want to iderate over a list of files. This list is the result of a find command, so I came up with:
getlist() {
for f in $(find . -iname "foo*")
do
echo "File found: $f"
# do something ...
5
votes
1answer
1k views
Python and/or Perl VS bash
I normally code admin scripts in Python and I know of many that code them in Perl. I was about to invest some time on improving my skills on bash programming. But I wonder if people around think that ...
3
votes
2answers
223 views
Detect mouse click in bash script
I'm wondering how to run a bash script in the background that will do something (i.e. run a script, or a command, or whatever) whenever a user clicks the mouse. I'd like this to continue running even ...
6
votes
2answers
954 views
install mysql on ubuntu without password prompt
how to write a script to install mysql server on ubuntu?.
sudo apt-get install mysql will install and ask for password for this how to assing password in script.
#!/bin/bash
sudo apt-get install ...
6
votes
4answers
2k views
Bash script, watch folder, execute command
I am trying to create a bash script that takes 2 parameters a directory and a command, I need to watch this directory for changes and when something has been changed I need to execute the command. I'm ...
4
votes
2answers
4k views
Pseudo-terminal will not be allocated because stdin is not a terminal
I am trying to write a shell scipt that creates some directories on a remote server and then uses scp to copy files from my local machine onto the remote. Here's what I have so far:
ssh -t ...
3
votes
5answers
2k views
Padding characters in printf
I am writing a bash shell script to display if a process is running or not.
So far, I'am here.
printf "%-50s %s\n" $PROC_NAME [UP]
This gives me an output like:
JBoss ...
9
votes
2answers
361 views
sending password to command line tools
i'm writing a python application that uses a command line utility (propietary so it can't be modified) to do part of its work. The problem is that I have to pass the password as a command line ...
5
votes
1answer
110 views
Bash: How do I make sub-processes of a script be terminated, when the script is terminated?
The question applies to a script such as the following:
Script
#!/bin/sh
SRC="/tmp/my-server-logs"
echo "STARTING GREP JOBS..."
for f in `find ${SRC} -name '*log*2011*' | sort --reverse`
do
(
...
4
votes
4answers
148 views
How to know if a running script dies?
So I'm somewhat new to programming and mostly self-taught, so sorry if this question is a bit on the novice side.
I have a python script that runs over long periods (e.g. it downloads pages every few ...
3
votes
3answers
527 views
Bash script to detect when my USB is plugged in and to then sync it with a Directory
Is there a Bash script and/or daemon that I can write that will detect a specific USB drive and then sync that drive with a directory?
2
votes
5answers
214 views
Shell script : changing working dir and spaces in folder name
I want to make a script that takes a file path for argument, and cds into its folder.
Here is what I made :
#!/bin/bash
#remove the file name, and change every space into \space
shorter=`echo "$1" | ...
2
votes
1answer
212 views
How to keyboard type a variable using xdotool?
I am coding a little script to save some data from Internet every single day.
So I am using xdotool to simulate all my navigation until the point I have the save window of firefox in front of me, I ...
1
vote
1answer
172 views
bash script to loop through subdirectories and create symlinks to all files
Ok, so I've been trying to get my head around this, but I'm struggling.
The premise is this: I have a directory with lots of subdirectories (some of which also contain more subdirectories), and I've ...
1
vote
3answers
760 views
Bash - wget and mv “command not found”
I have this basic script in bash:
SOFT=apt-fast
FILE=$SOFT.sh
PATH=$SRCF/$FILE
WWW=http://www.mattparnell.com/linux/apt-fast/$FILE
EXEC=/usr/bin/apt-fast
wget -v -U firefox $WWW -O $PATH
mv $PATH ...
0
votes
2answers
159 views
Job Control with Multiple Shells in bash?
First things first, I'm very new to bash scripting.
Well, I have a bash script to start the creation of a loopback server. Which does some bash commands, then runs 'expect' which then starts a ...
0
votes
2answers
428 views
Running erlang shell as a deamon/service
OS: Ubuntu 11.04
I have an Erlang program that runs in Erlang shell, obviously, and I want to monitor it.
This is what I want:
When the machine starts the Erlang shell should start up with it, and ...
4
votes
2answers
104 views
How to check that a parameter was supplied to a bash script
I just want to check if one parameter was supplied in my bash script or not.
I found this, but all the solutions seem to be unnecessarily complicated.
What's a simple solution to this simple ...
4
votes
4answers
222 views
Time taken by `less` command to show output
I have a script that produces a lot of output. The script pauses for a few seconds at point T.
Now I am using the less command to analyze the output of the script.
So I execute ./script | less. I ...
4
votes
2answers
1k views
How to update one file in a zip archive
Is it possible to replace a file in a zip file without unzipping deleting the old file adding the new file and rezipping it back?
Reason is i have a zip file which is really big there is one xml ...
3
votes
2answers
68 views
What should I do to get the whole return value of c-program from command line?
I have a simple C-program "./my_program"
#include <stdio.h>
int main (int argc , char **argv) {
unsigned int return_result = 0x474;
printf("return_result = %d = 0x%x ...
3
votes
1answer
2k views
Apache htpasswd secure password change
My question is simple.
How to allow users to change their passwords stored in some htpasswd file in linux without revealing the files content or allow users to modify other passwords?
I tried to ...
3
votes
1answer
925 views
Bash script log file rotation
My bash script produces a log file. Now i'd like to implement some log file rotation. Let's say the first time it's called somelog.log, the next time it's renamed to somelog.log.1 and the new log file ...
2
votes
4answers
42 views
Print space-separated list in columns
I have this Makefile that has a variables named "MODULES" which lists all the modules I have activated in my build.
This list is separated by spaces, so it looks like this when I do echo $(MODULES):
...
2
votes
2answers
46 views
bash: treat quotes in quotes
I isolated a problem in my script to this small example. That's what I get:
$ cmd="test \"foo bar baz\""
$ for i in $cmd; do echo $i; done
test
"foo
bar
baz"
And that's what I expected:
$ ...
2
votes
3answers
47 views
change a field and port mysql table data via script ?
mysql> desc oldtable;
+---------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
...
2
votes
3answers
96 views
running a limited number of parallel programs using a script
Based on This solution I am trying to develop a script that would limit the number of processes running to 4. However as an alternative I want the jobs to be stored in an array that I reference by ...
2
votes
4answers
119 views
In Linux shell bash script, how to print to a file at the same line?
In Linux shell bash script, how to print to a file at the same line ?
At each iteration,
I used
echo "$variable1" >> file_name,
echo "$variable2" >> file_name,
but echo ...
2
votes
3answers
121 views
Does it possible combine bash and awk script files?
I have some bash script where I get values of variable, that I would like use in awk.
Does it possible include whole awk (like it possible with bash script files) file in bash e.g.:
#!/bin/sh
...
2
votes
4answers
277 views
Script to compare a string in two different files
I am brand new to stackoverflow and to scripting. I was looking for help to get started in a script, not necessarily looking for someone to write it.
Here's what I have:
File1.csv - contains some ...
2
votes
1answer
234 views
Is it possible to run a bash script from Maven?
For creating configuration of my application I need to run bash script.
Is it possible to integrate execution of bash scripts in Maven, maybe there are some plugins?
Thanks.
2
votes
2answers
511 views
Difference between bash pid and $$
I'm a bash scripting beginner, and I have a "homework" to do. I figured most of the stuff out but there is a part which says that I have to echo the pid of the parent bash and the pid of the two ...
2
votes
1answer
196 views
Parsing strings with linux bash - Delphi code to Bash code
Could someone tell me how I'd write the following code in a linux bash script?
procedure ParseLine(Line: String; var url, lang, Identifier: String);
var
p1,p2: Integer;
Begin
p1 := ...
2
votes
2answers
781 views
find: paths must precede expression
I'm getting this error:
"find: paths must precede expression
Usage: find [-H] [-L] [-P] [path...] [expression]"
For this code I produced:
for subdir in `find ./$file/ -name "*.$@"`
do
...
2
votes
4answers
262 views
Renaming a file extension without specifying
I am creating a bash shell script that will rename a file extension without having to specify the old file extension name. If I enter "change foo *" to the Terminal in Linux, it will change all file ...