2
votes
1answer
29 views

unix find and replace characters with strings for multiple characters

I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
3
votes
0answers
33 views

SHOUTcast daemon script not functioning properly

I've got a SHOUTcast server running on Ubuntu. The server process is running great, but I can't seem to get the daemon script to function properly. Following a couple tutorials I found I came up ...
1
vote
5answers
45 views

How to use sed to extract substring

I have a file containing the following lines: <parameter name="PortMappingEnabled" access="readWrite" type="xsd:boolean"></parameter> <parameter name="PortMappingLeaseDuration" ...
0
votes
3answers
52 views

how to parse watch command output to last 5 digits?

From the command watch -n1 "ifconfig eth0 | grep GiB" I have output given below, RX bytes:730624111504 (680.4 GiB) TX bytes:31815434434 (29.6 GiB) Now I just want the last 5 digits before ...
-1
votes
0answers
24 views

Execute Host commands from a virtual machine

I have an Ubuntu virtual machine that i run using virtual box on my Windows 7 OS. This virtual machine runs shell scripts that affect files and folders on my Windows file system. I've been doing this ...
0
votes
1answer
25 views

Shell Cron Error - What could cause this error?

Description: I am not very familiar with using a lot of bash/shell. I currently have a cron tab set up on an Ubuntu server that runs a Shell script. The Shell script then is suppose to run a PHP ...
0
votes
2answers
35 views

test for process return status returns unexpected results on ubuntu

Here's a piece of shell script code that I am executing on an ubuntu machine: myProcess ret="$?" if [ "${ret}" == "0" ] then echo good else echo bad "${ret}" fi So the logic is pretty ...
0
votes
1answer
16 views

Subject and from fields are not coming well

I have created a shell script that check status for mysql and send a mail if it is not running.The script is running well but from and subject are not coming well in mail. FROM_ADDRESS is coming as ...
0
votes
1answer
91 views

Adding sudo permissions to sudoers for user via shell script

I'm trying to create a post install script for Linux and I want to have the script edit the sudoers file so that users wont need to do sudo visudo and edit it manually. In the script I have: if [[ ! ...
0
votes
2answers
24 views

Menu doesn't want to work with funcion

I am doing a menu based program and I am trying to call a function as one of the menu choice. In this case it is the first choice. However if I press 1 nothing happens, but the script works( I have ...
0
votes
0answers
78 views

Ubuntu server backup script

I have copied a backup script and modified it for my gaming server. The script is not working as it should with the old backup deletion function, but please do me a favor and check if the entire ...
0
votes
1answer
53 views

Run Multiple Shell Scripts From One Shell Script

Heres what I'm trying to do. I have 4 shell scripts. Script 1 needs to be run first, then 2, then 3, then 4, and they must be run in that order. Script 1 needs to be running (and waiting in the ...
-2
votes
1answer
42 views

how to change permissions of files inside /var/www/results/abc.txt by some .sh file in Ubuntu [closed]

As we have to enter the root Credentials all time we change permissions of files inside /var/www/result/abc.txt , how to do this by a .sh (file). In my case these txt files are recursively generated ...
-1
votes
1answer
17 views

How to copy specified file_name to specified_directory_name in ubuntu

I have some file, the name of files like CAB01_backup CAB02_backup CAB03_backup ... CAB120_backup this files locate in directory name "files" (/home/files/) and there are other directory besides ...
0
votes
1answer
32 views

Pig Apache Local cannot run any trial in Unix Shell

I've set up both the JAVA_HOME and the PIG_HOME. When I try $pig - x - local trial.pig,the feedback is as follows: 2013-04-21 04:01:30,833 [main] INFO org.apache.pig.Main - Apache Pig version ...
0
votes
0answers
26 views

Subshell MySQL-query in bash

I'm trying to set variable in the cycle in Ubuntu bash, which is getting recordset from database, but this variable is setting to its previous value. Here is a code: #!/bin/bash PREV_FILE_PATH="127" ...
0
votes
1answer
84 views

Trying to create a shell script with 2 menus to do additions and substractions

This is what I have so far. I really cant figure out how to call Menu2 from another function. I always get an error whenever I try to run it. Also for some reason from the first menu, I need to type ...
1
vote
2answers
70 views

Source files in a bash script.

I am using two versions of ROS next to each other. To use one I have to source some enviroment variables for the specific version. I would like to create a script that does this. But if I create a ...
0
votes
2answers
147 views

Insert CSV to MySQL using Ubuntu Terminal via shell script

Is it possible to insert a CSV file into MySQL using a shell script in Ubuntu? Here's what I tried : mysql -uroot -proot mysfdb < /home/sf/data.csv But I am given an error ERROR 1064 (42000) ...
0
votes
1answer
107 views

After Jenkins is installed in Vagrant, cannot connect from browser

I'm trying to install Jenkins on Vagrant for my development environment. I choose Ubuntu http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-vagrant-amd64-disk1.box for my box. ...
2
votes
2answers
40 views

Echo but retain double quotes

I'm trying to create a script which will echo varibles / text to a file - a snippet of this script is: echo " SUBJECT="Text here" EMAIL="email@domain.co.uk" EMAILMESSAGE="/tmp/emailmessage.txt" " ...
0
votes
0answers
106 views

PHP shell exec ssh [closed]

In my old server (debian), I can run ssh like this in php: try { $db = new PDO("mysql:host=$host;port=$portOMS;dbname=$dbnameOMS", $sqlUserOMS, $sqlPassOMS); } catch (Exception $e) { ...
0
votes
4answers
45 views

Ubuntu Splitting a file into three files with a third of the number of total lines in each

I have a simple ascii text file with a string in each line, something like aa1 aa2 ab1 ... with a total of N lines. I know I can use the split command to split it out into a fixed number of lines ...
1
vote
1answer
184 views

Github error: src refspec BRANCHNAME does not match any

I forked a repo on GitHub. Created a new branch from website (named "anythingslider"). Then: cd /home/multiformeingegno git clone git@github.com:multiformeingegno/cdnjs.git Enter passphrase for key ...
1
vote
4answers
88 views

Bash if string = this or that

Trying to write a script which will read what a user has imput... I know it's basic but im stuck on the first if.. echo "Please enter yes or no (y/n)?" read string if [ $string = "y" -o "n" ] ...
1
vote
1answer
168 views

Fetching Url of a website through shell scripting

I am trying to build a shell script which on execution can fetch the url of a website into a text file, so that i can use that text file as an input to wget
1
vote
1answer
66 views

Continue linux shell script execution after command completion

I need to perform a md5sum check after downloading a zip file. My shell script looks like this: wget $1 -O "$5.zip" md5pkg=md5sum $5.zip #perform check and other operations with md5pkg Now, the ...
0
votes
0answers
157 views

low graphic mode issue after install GNOME 3 on ubuntu 12.10 [closed]

hi friend i'm using windows and ubuntu on my lenovo G580 Laptop which has 4GB RAM and i5 3rd generation processor.Now the problem is i tried to to install GNOME 3 on my laptop.after installed using ...
0
votes
1answer
41 views

setting variable Linux

I am new to linux shell scripting and I am trying to set the following variable to get the size of a folder path passed in from keyboard. I keep getting an error saying invalid option. T Can anyone ...
1
vote
1answer
60 views

Ubuntu mysterious proxy [closed]

Can't find where my proxy settings are stored. I'm on Ubuntu 12.04. Once upon a time I created a "manual" proxy through Network app GUI. Turned it off same way but now I everytime I use shell I have ...
2
votes
3answers
62 views

Execute shell script everytime a new user is created

What would be the easiest way to execute a command everytime a new user is added? I checked through /etc/adduser.conf but nothing is in there which looks like it will do this? I thought about added ...
0
votes
2answers
96 views

Shell script: Parallelizing commands in bash script under Ubuntu linux

I am creating a bash script to losslessly compress jpeg and png files, so I use two package under Ubuntu named jpegoptim and optipng. A will use the script with 2 or 4 core processors. I would like to ...
2
votes
1answer
76 views

Shell script runs from CLI but not from Crontab

I have a shell script that goes through every JSon file in a directory and uses phantomJS to create a highchart png. The problem comes when scheduling a cron task to run this script - (Initially I ...
0
votes
2answers
85 views

Making a shell script run as a daemon at boot

I have a shell script ( bash ) which I am currently running in the background to test it. Now I want to run it as a daemon after booting the computer. How can I achieve this? It already has an ...
-2
votes
1answer
80 views

Shell script for installation [closed]

I need a shell script file for Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support (LEMP) On Ubuntu 12.10. Can anyone direct me to create a shell script file to install these tools. Am new in ...
0
votes
1answer
50 views

tracking / monitoring system

I have been developing an application which will track the work history of employees in the office. Hence I need to track the following details of my users Ubuntu users. Applications opened. ...
0
votes
1answer
33 views

cd to symbolically linked directory fails in cron environment

I have a server running Ubuntu 12.04, which we use to host a Rails app. I'm running a task on cron, which is made up of a couple of unix commands separated by && - e.g: cd ...
1
vote
3answers
50 views

how to delete multiple files according to the content in ubuntu

I want to delete all the files which only contains one line in it. To list the number of lines in each file is wc -l *txt. I only know how to use rm to delete files with specific names but not the ...
1
vote
1answer
50 views

How to read a property value of json file located local on Ubuntu Terminal

I have a json file like below: { "result": { "covered_percent": 47.06 } } and how can I read this value on Ubuntu Terminal.
0
votes
1answer
31 views

How to see the properties of folder in terminal?

How to see the properties of folder(including subfolder) in terminal as windows gives the properties like size, no of files, no of folders etc....
0
votes
3answers
75 views

Unix command to search a line in a file and replace it

I am trying to replace Config Files with the UnixCommandline without using an Editor like vi or nano. An example could be: ServerAdmin mail@example.com I want to find the first or all lines that ...
0
votes
1answer
97 views

else if in bash script is giving error

#!/bin/bash value=$(</var/www/sym_monitor/man_mon.txt) value2=$(</var/www/sym_monitor/panel_mon.txt) pro=$(ps -ef |grep sym |grep -v grep |awk '{ print $2 }') echo "$pro"; echo "STARTED"; if [ ...
2
votes
3answers
50 views

Ubuntu:- append remove keyword to a file

I have a file containing file name. file1 file2 file3 file4 I wan to create a shell script that add the'rm' infront rm file1 rm file2 rm file3 rm file4 How to append the rm in front the file ...
0
votes
0answers
91 views

Using Ubuntu FTP to Window Server 2008 R2 and delete file older than a month

ON the Window Server I have setup a filezilla ftp server and I wan to write a shell script to delete file from a folder older than a month. but ftp command is unable just to retrieve date of the file ...
0
votes
4answers
60 views

Ubuntu linux command extract substring inside

I have a txt file on ubuntu containing -rw-r--r-- 1 ftp ftp 0 Feb 26 11:37 6.txt -rw-r--r-- 1 ftp ftp 0 Feb 26 11:37 7.txt -rw-r--r-- 1 ftp ftp 0 Feb 26 ...
0
votes
1answer
29 views

two crons not running simultaniously?

MAILTO="" */10 * * * * /bin/bash /var/www/sym_monitor/sym_start.sh > /var/www/migrate/root_start.txt 2>&1 */10 * * * * /bin/bash /var/www/sym_monitor/stop.sh > ...
0
votes
2answers
106 views

shell script not running the other script inside it

#!/bin/bash value=$(</var/www/sym_monitor/man.txt) if [ "$value" == "true" ]; then ps -ef|grep sym |grep -v grep |awk '{ print $2 }'|sudo xargs kill -9; cd /var/www/symmetric-ds-3.1.6/bin; ...
0
votes
1answer
91 views

shell script error [: 12: unexpected operator?

#!/bin/bash value=$(</var/www/sym_monitor/manthan.txt) if [ "$value" == "true" ]; then ps -ef|grep sym |grep -v grep |awk '{ print $2 }'|sudo xargs kill -9; (cd ...
0
votes
1answer
194 views

sh- 3.2# instead of #?

i am trying to invoke a root shell via buffer overflow. I get sh- 3.2$ instead of #. It seems like sh- 3.2$ is similar to # as it also issues commands. However it seems to be permanently stuck. ...
0
votes
2answers
86 views

crontab not working properly

When I run a script manually using root it is working fine. when I execute the same script inside cron it is not running. I checked the cron is actually calling the script but the script is not ...

1 2 3 4 5 7