Tagged Questions
0
votes
1answer
11 views
How to run script on AWS Cloud Formation startup as a different user?
I am having a lot of trouble launching an AWS Ubuntu instance (from a Cloud Formation template) and successfully running a script on startup. This script does run, but I do not want it running as ...
1
vote
1answer
25 views
Setting variable to last arg from command line parameters
I'm trying to write a script in a way that makes it simple to add future command line args. I'm using getopts and that works well. However, I'm running into issues with the case statement.
...
1
vote
6answers
47 views
linux bash, print line contaning string in a column
let's say my file /etc/passwd contains
ntp:x:38:40::/etc/ntp:/sbin/nologin
avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin
haldaemon:x:38:68:HAL daemon:/:/sbin/nologin
...
1
vote
2answers
38 views
linux bash: line 18: syntax error near unexpected token `fi' Q2.sh: line 18: `fi'
I'm trying to compile this code but I am getting the following error:
Q2.sh: line 18: syntax error near unexpected token `fi'
Q2.sh: line 18: `fi'
at line 15, I'm trying to verify if the parameter ...
2
votes
2answers
54 views
bash, command not found
i'm having trouble fixing the error in this bash script, I seriously have no idea what I did wrong, any help is appreciated thanks
[centoslive@livecd ~]$ sh ListFich.sh test
Synthese, Question 2
...
0
votes
1answer
21 views
BASH: Read all files in a directory recursively, includinging symbolic links
I got this tidy script from someone:
find ../Classes -name \*.cpp -print
which simply loops a directory, and prints all files recursively. However, it doesn't follow symlinks. All I can find ...
-6
votes
0answers
33 views
linux bash script check ports are open or close and enable or disable linux service [closed]
can someone help me with linux bash script to check for two open ports: 8080 on two different servers. If the port is open on one of these servers, bash scirpt will do nothing. If the two ports are ...
-2
votes
2answers
45 views
Script to log on to website, check for changes and email if changed
I'm hoping to write a simple script that will log on to a specific website (email as username, no pw required) and check for changes. If there are any changes I'd like to receive an email ...
0
votes
0answers
38 views
Linux: WGET - scheme missing using -i option
I am trying to download multiple files from yahoo finance using wget.
To do that i used a python script to generate a text file with all urls that i need.
When downloading a single file (a csv file) ...
0
votes
3answers
27 views
Bash case statement
I'm trying to learn case as I was to write a fully functional script.
I'm starting off with the below
#!/bin/sh
case $@ in
-h|--help)
echo "You have selected Help"
;;
...
1
vote
2answers
38 views
source a shell script from another script and check return code
I want to source a file eg name.sh from another script and check the return code and decide on it's error code. If I use
source name.sh
then if name.sh return non-zero return code my main script ...
2
votes
2answers
53 views
Using a variable to define a path
#!/bin/bash
SOURCE="/C/MSDFFiles/IPFiles/Source"
WORKING="/C/MSDFiles/IPFiles/Working"
rm -rf ./Working/*
cp "$SOURCE/"* "$WORKING/" 2> /dev/null
echo "DONE"
I am trying to copy all the files ...
-3
votes
2answers
77 views
How to rearrange text file output result
I would like to write a unix script that do the following to have the ff result:
textfile1 contains the following text:
keyval1,1
keyval1,2
keyval1,3
keyval1,4
keyval2,1
...
1
vote
1answer
29 views
Clonezilla custom-ocs bash script failing on ocs-onthefly command
I'm doing a custom clonezilla.. one for source to send a local disk to remote disk with ocs-onthefly... that custom-ocs is working fine.
However, the custom-ocs for the destination for some reason is ...
0
votes
2answers
28 views
check list of email addresses against other list
I have two files with email addresses (one per line): file1 and file2.
How can I remove all the emails in file1 which also exist in file2? Looking for a bash answer, but any other scripting language ...
0
votes
2answers
28 views
How does MySQL take variables in bash?
Making a script to print out data from a MySQL db via bash, I met the following problem:
While I try to log in, it uses the password as the database to log in to.
Script is like this:
#!/bin/bash
...
0
votes
3answers
52 views
Using grep to list lines starting with
I am trying to Use the GREP command to list all lines which contain the letter
'd' at least twice in a row (that is, next to each other), from file "test". But i can't get it to work. Can someone ...
0
votes
3answers
64 views
Syntax errors when executing a complex command via ssh
I would like to know if a server is running and if not then i would like to start it. for this scenario I have written the following bash script
ssh -t machine "cd /to/the/bin/path
&& if [ ...
-2
votes
1answer
42 views
Using read command [closed]
I am extremely confused about using the read command. Can someone please explain this to me? For example if I have:
An executable file called script, containing
read first second
echo $first
echo ...
0
votes
1answer
36 views
How to copy files to remote computer using Bash script?
I have a script that needs to copy a file to a remote computer:
cp -R "${DEST_FOLDER}" "${SRC_FOLDER}"
How can I do it when the remote computer requires user and password for access?
How do I ...
1
vote
2answers
39 views
How to pass variables between bash script and Matlab
For example in Matlab I have a string x = 'foo' so I want to use it in bash script. Or I have in bash script x =$'foo' so I want to use x in Matlab. Is there a way to do this?
0
votes
1answer
38 views
running Matlab in bash script; matlab: not found
The code to run matlab in bash script:
matlab -nodesktop -nosplash -nodisplay -r "run ./myDir/myfile ; quit;"
I have Matlab installed on my computer, however when I run the bash script I get this ...
0
votes
3answers
61 views
BASH Parsing variables from config file
Having the following content in a file :
VARIABLE1="Value1"
VARIABLE2="Value2"
VARIABLE3="Value3"
I need a script that outputs the following :
Content of VARIABLE1 is Value1
Content of VARIABLE2 ...
2
votes
3answers
51 views
preventing wildcard expansion in bash script
I've searched here, but still can't find the answer to my globbing problems.
We have files "file.1" through "file.5", and each one should contain the string "completed" if our overnight processing ...
1
vote
2answers
35 views
Unable to set second to last command line argument to variable
Regardless of the number of arguments passed to my script, I would like for the second to the last argument to always represent a specific variable in my code.
Executing the program I'd type ...
0
votes
2answers
48 views
Bash array and loop won't work together
I am pretty new in bash script and can't figure out why this piece of code doesn't work (yes I've googled around).
Here's my code:
if [ $usertype = normal ]
then
commands[0]="hi" ; ...
1
vote
2answers
56 views
Open file in bash script
I've got a bash script accepting several files as input which are mixed with various script's options, for example:
bristat -p log1.log -m lo2.log log3.log -u
I created an array where i save ...
1
vote
1answer
29 views
Set time for execution of php script with exec() instead of waiting for fgets(STDIN)
(I'm french so sorry for potential language errors)
I'm trying to launch the auto-airplay script (https://code.google.com/p/open-airplay/source/browse/trunk/PHP/airplay.php?r=20) with the exec() ...
0
votes
1answer
66 views
How to write script for Linux Mint 14
What I want to do
Write a script to set the screen resolution (1600 x 900) in Linux Mint 14 OS. Mint OS is installed in VMware Workstation 9 on my laptop.
What I did before
Open terminal and ...
2
votes
2answers
30 views
Copying and pasting files within .jar
I am writing a script that will copy a bunch of files from a .jar file and I want to paste it into another .jar file.
This is a bash script.
How can I do this without having to extract and repack ...
0
votes
1answer
81 views
Shell script to loop command line switches and arguments
I'm trying to write a bash script that will check command line switchess and use the very next argument for the switches argument.
Example:
sh myprogram.sh -s switchArg -p programArg start
Within ...
-3
votes
1answer
34 views
How can I see the options of any bash or Unix command [closed]
I am learning some bash and was wondering what the easiest way was to get a list of all options of a command. For example, I was just using the 'read' command in bash and didn't know what the options
...
2
votes
3answers
73 views
Execute python script from java
I am trying to make this works since 2 days ago but I don't know why it doesn't.
I can execute normal linux commands (ls, pwd...) without problems but I try to execute a python script and nothing ...
0
votes
2answers
43 views
Awk/Cut variable denying further use of mutt?
So I am building a script to check for files with certain errors in a bunch of files, based on output from an SQL DB. The file with the error shall be sent to me via mail.
The problem is that when I ...
0
votes
1answer
32 views
Folder Creation Subtract file number?
I havent been able to find an answer that best suites my needs, and I appologize if someone is able to find it easily.
I have a script that works to move files into folders based on their names. It ...
0
votes
1answer
36 views
How to save a string from a file into a variable in bash
I am trying to make a script that will ask you for a path to several files when you set it up and when you run the actual script, it reads the path from a file that you created earlier. I can make the ...
0
votes
1answer
71 views
Why am I getting this 'bad substitution' error in my bash command?
when I run this I get this 'bad substitution' error. What can I do?
$ x="Hello World"
$ echo "$x"
Hello World
$ echo "${x^^}"
-bash: ${x^^}: bad substitution
EDIT: I would like to have it in all ...
0
votes
1answer
57 views
Shell/Git Script: Pattern matching for the current commit message
I'm trying to do a hook for a message that you're about to commit on git. What I usually do when about to commit is [SOME_DESCRIPTION] Refs #[0-9]+
I've never done shell scripting before but I'm ...
0
votes
1answer
62 views
Script runs on 50 servers. How can I ensure only one executes a particular step? [closed]
I have some work that needs to be done on 50+ servers. The first step is to checkout an updated version of some source code onto a shared directory (assume all have the shared drive mounted). The ...
0
votes
1answer
52 views
How to extract specific parts of the path and filename in linux
My current task is renaming a whole lot of files across multiple directories to different identifiers.
So I have several directories like: b01, b02, b03, etc. Within each directory is filenames such ...
0
votes
2answers
116 views
linux scripted git pull error: cannot open .git/FETCH_HEAD: Permission Denied
Need a little help scripting a git pull.
We have an intranet server that we are trying to script a git pull to, and I'm running into a permission issue.
error: cannot open .git/FETCH_HEAD: ...
1
vote
1answer
25 views
Removing folder in Ruby under a path
I would like to be able to remove the folder "OLDFOLDER" and its sub folder in the following folder structure via a ruby script in linux (Im pretty new to ruby and Linux).
/X/Y/Z/OLDFOLDER/SUBFOLDERS
...
0
votes
2answers
45 views
How to write bash script to test if program crashes?
I have a program x which sometimes crashes on certain input files.
How do I write a bash script that returns the following?
0 if the program x terminates fine or runs for longer than 1/20th of a ...
1
vote
2answers
47 views
Does file content fully exist in library files
I have just completed the refactoring of a long piece of code.
My refactoring included breaking up the source code into many functions in many files at many folders.
Now that I'm done, I want to ...
1
vote
3answers
60 views
Run tail -f for a specific time in bash script
I need a script that will run a series of tail -f commands and output them into a file.
What I need is for tail -f to run for a certain amount of time to grep specific words. The reason it's a certain ...
0
votes
1answer
32 views
Adding a NULL value for a datetime entry in an SQL table through Bash
I am attempting to populate an SQL table through reading text files via bash to hand off to the table. I have it all working except when trying to add a null value to a datetime field.
mysql --host ...
-1
votes
2answers
34 views
directory traversal bash shell
I have a structure as follows; each user in my system have their own control files under their names as directory. Example: suppose username is joe. The control files for the user is located in ...
0
votes
1answer
53 views
Bash - Need to use exit but then call another function?
I'm writing a little script to use the webcam on the laptop and then email across the photo to me. The ffmpeg usage has to have a exit code for it to work so with this exit the mail function will not ...
1
vote
2answers
59 views
BASH rename .log to .LOG
I am having a hard time understanding this. I have researched brace expansion and the mv command but for some reason it still isn't making sense to me. I am reading Unix and Linux system ...
0
votes
3answers
63 views
bash scripting copying all files in folder
I'm writing a shell script as follows:
for file in `ls`
do
mkdir "$file"_folder
cp $file "$file"_folder
done
What I want to do is to make a folder for each file in the current directory with ...


