The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
1
vote
5answers
31 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" ...
2
votes
3answers
37 views
Shell: How to a file's specified parent directory's name?
I am a beginner for Shell programming. I am currently writing a script to manipulate found files. but I would be needing to get the parent directories' names for found files. For example,
...
0
votes
3answers
41 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 ...
0
votes
3answers
17 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"
;;
...
3
votes
5answers
50 views
Why these simple shell commands fail when used in sed'd replacement
While trying to find an answer of this sed question I came up with a strange behavior that I couldn't understand.
Let's say I have a file called data
$> cat data
foo.png
abCd.png
bar.png
baZ.png
...
2
votes
0answers
37 views
How to recover bash output of an already closed window? [migrated]
I have run a specific program in a bash terminal and I closed it by mistake before reading its output. Is it possible to recover the information that was sent to the stdout by taking a look at some ...
0
votes
2answers
31 views
Executing shell command in python with file as stdin
In my Python code, I have
executable_filepath = '/home/user/executable'
input_filepath = '/home/user/file.in'
I want to analyze the output I would get in shell from command
/home/user/executable ...
2
votes
1answer
21 views
Ignoring directories from a file
I am in the process of creating a script that lists all files opened via lsof output. I would like to checksum specific files and ignore directories from that output but am at a loss to do so ...
0
votes
2answers
48 views
Is this an effective way to wait 10 seconds for an IP address?
I have a shell script that basically creates a vm that I use to do some processing on. This VM is given a random IP address that I obtain using VMwares vmrun utility. The machine can take anywhere ...
1
vote
2answers
34 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 ...
0
votes
2answers
36 views
/bin/sh: 0: command not found
I have a following problem guys, my PHP script is like this:
#!/usr/bin/php
<?PHP
// Define the path to file
$file = 'mydb.sql';
if(!file)
{
// File doesn't exist, output error
...
0
votes
0answers
12 views
start daemon on remote server via Jenkins SSH shell script exits mysteriously
I have a build job on jenkins that is building my project and after it is done, it opens an ssh shell script on a remote server and transfers files and then stop and starts a daemon.
When I stop and ...
1
vote
0answers
13 views
detect HPA on pendrive [closed]
My computer is showing the capacity of my 8GB pendrive as 736MB. Formatting it did not help. I want to know if there is some way to detect the presence of an HPA on a pendrive by the means of some ...
2
votes
2answers
34 views
Shell script termination notification
I have a requirement in shell script that in case if shell terminates for some reason I.e terminal closed or user terminated, I would like to do some work like clean up and unlocking etc. Is it ...
0
votes
0answers
6 views
How to check appstore provision in Xcode runscript
I'm increasing the build number using xcode runscript
the build number is increasing only while achieving
code for checking release or debug
if [ $CONFIGURATION == Release ];
And my need is to ...
1
vote
1answer
30 views
unix linux shellscript programming printing input arguments containing multiple words
I am trying to write a shell script for which 1st 2nd and 3rd...n argument contains multiple words
MAILING_LIST="abc@gmail.com xyz@gmail.com zed@gmail.com"
echo $MAILING_LIST
mailing "Error in Job" ...
-1
votes
2answers
38 views
Deleting log directories of a particular timestamp in UNIX
I want to delete directories that are five days old, based on the directory name, instead of unix timestamp.
Let us assume that directories are created like test_2013-05-20-12:23:43 and so on.
I want ...
0
votes
1answer
15 views
Getting previous day's date in Unix
I am using the following code to assign previous day's date to a variable yesterday:
yesterday=`TZ=GMT+24 date +%Y%m%d`;
echo $yesterday;
The value is assigned correctly when I execute the command ...
0
votes
4answers
65 views
Linux Shell - String manipulation then calculating age of file in minutes
I am writing a script that calculates the age of the oldest file in a directory. The first commands run are:
OLDFILE=`ls -lt $DIR | grep "^-" | tail -1 `
echo $OLDFILE
The output contains a lot ...
0
votes
2answers
18 views
Bourne Shell script doing the job but producing extra message
So, the script should take in a file extension and possibly multiple files to change their extensions. It works for most, but when the file has a space in it, it changes it and then says the file does ...
0
votes
1answer
15 views
Fish programming: Why are `bind` commands in config.fish not executed?
At end of /usr/share/fish/config.fish, I have the following commands:
bind \e\[1\;5C forward-word
bind \e\[1\;5D backward-word
echo foo
Afterwards I run fish, it prints "foo". I then run bind to ...
1
vote
4answers
48 views
grep -P no longer works how can I rewrite my searches
It looks like the new version of OSX no longer supports grep -P and as such has made some of my scripts stop working.
var1=`grep -o -P '(?<=<st:italic>).*(?=</italic>)' file.txt`
I ...
-1
votes
2answers
48 views
Awk/Sed: how to replace string?
Given a data.json such as:
{ "key1":"value1", "key2":"value2", "key3":"value3", "key4":"value4" },
{ "key1":"babla1", "key2":"babla2", "key3":"babla3", "key4":"babla4" },
{ "key1":"tata1", ...
3
votes
1answer
39 views
Piping a file through tail and head via tee
Starting from here I tried to read a file and emit the head and the tail of the file (reading the file only once).
I tried the following:
tee >(head) >(tail) > /dev/null < text.txt
This ...
0
votes
2answers
16 views
Curl not working on mac?
I am trying to install a file using curl on my mac through a shell script. I am running 10.8. here is my code:
#!/usr/bin/env sh
curl -s https://website.com -o /usr/local/bin/folder
echo "success"
...
0
votes
0answers
24 views
Binary file fails to execute in linux though file is present [migrated]
I have a binary called testbin in /x/eng/r1/scratch/user/.jef/testbin.
When I go to a different directory and try executing the binary as
$ /x/eng/r1/scratch/user/.jef/testbin
I get an error:
...
2
votes
2answers
27 views
Getting different output from openssl when piping file into command
I would like to sign a file using a dsa key and openssl. The DGST(1) man page says the following:
file...
file or files to digest. If no files are specified then
standard input is used.
...
1
vote
0answers
25 views
pip installation issue getpip file
I am trying to install pip folowing this tut:
http://dubroy.com/blog/so-you-want-to-install-a-python-package/#installing
i copy the code from getpip.py, save it and run it with python, but the ...
1
vote
2answers
43 views
Bash syntax error: unexpected end of file with for loop
#!/bin/bash
cp ./Source/* ./Working/ 2> /dev/null
echo "Done"
for filename in *.zip;do unzip “$filename”;
done
In the above script, I am trying to copy all the files from source to working ...
-1
votes
2answers
20 views
changing shell to something that isn't restricted [closed]
Ubuntu 12.04
I recently made a new user on a new server, and I found that my up and down arrows weren't working, so I found I needed to change the shell.
I changed it to rbash, and now I can't cd. ...
0
votes
1answer
31 views
Cutting Substring from a file
I have the 2 tnsentries of a file with entries like , each entry is in a line.
AAA_PRD =
...
0
votes
0answers
10 views
Child process standard output redirection to parent standard output by Linux ash-shell
I have got one Linux application run by the command:
ash -c /usr/local/esw/utilities/mymonitor
which then create a child process running the mymonitor application, whose output is driven by ...
4
votes
1answer
55 views
Variable scope in the shell level
Recently I have been reading The Advanced Bash Script and I find something about the variable scope between parent and children shells puzzle me so much. Here it is:
Scene:
there are some ways to ...
-1
votes
0answers
13 views
compress folder in linux. [migrated]
I'm a linux newbie and I'm trying to zip a folder which exists on a remote host and export it to another remote host. A quick google search lead me to tar/gzip and rsync options but I'm not sure how ...
0
votes
3answers
38 views
Issue in invoking shell script in java
I am calling a shell script in java which takes in 2 pameteres.
private void invokeShellScript(String script,String subject,String message)
{
String shellCmd = null;
try
{
...
1
vote
4answers
40 views
Regex to match string between quotes
I'm using a shell script to read in a file and then piping the output to grep and trying to extract the string contained between two quotes (while excluding the quotes).
./readFile.sh | grep -e ...
0
votes
1answer
28 views
Get Application Name/ Label via ADB Shell or Terminal
Hi guys at stackoverflow,
I'm developing an application that uses ADB Shell to interface with android devices, and I need some way of printing out the application name or label of an application, ...
0
votes
2answers
45 views
Merging Multiple records into a Unique records with all the non-null values
Suppose I have 3 records :
P1||1234|
P1|56001||
P1|||NJ
I want to merge these 3 records into one with all the attributes. Final record :
P1|56001|1234|NJ
Is there any way to achieve this in ...
0
votes
3answers
35 views
Windows equivalent to #!/usr/bin/php
I am trying to execute a php file from sos-berlin jobscheduler. My OS is windows 7. I am following the documentation
http://www.sos-berlin.com/mediawiki/index.php/How_to_execute_a_PHP_script_with_JS
...
-2
votes
1answer
19 views
Php Secure upload of an image [closed]
What kind of checks should i do ? For example: mime check, is valid image check (how to do it?), and what else? I want to prevent uploading of virus/shell/no-image file. Thanks you. URLs to ...
1
vote
1answer
30 views
Using makefile variables in shell script
I've a makefile where all the environment variables are defined (top directory) and I want to use some of these variables in a shell script present at innermost level.
How should I access those ...
1
vote
1answer
19 views
shell: how to declare volatile variable in shell
I have requirement where I will declare a variable with initial value and pass to a shell function which runs in back ground. Now If a change the value it should reflect in function.
Can anyone tell ...
0
votes
3answers
65 views
Sed to extract text between two strings
Please help me in using sed.
I have a file like below.
START=A
xxxxx
xxxxx
END
START=A
xxxxx
xxxxx
END
START=A
xxxxx
xxxxx
END
START=B
xxxxx
xxxxx
END
START=A
xxxxx
xxxxx
END
...
0
votes
2answers
45 views
How to create multiple files of the same size from a variable?
I have a shell script with a variable which I create an output file as follows
Variable >> file.txt
Result:
file.txt 20 kilobytes
Then, I have to split that output file in several of the same ...
0
votes
6answers
86 views
Comparing two files and printing similar lines
I've got two text files which both have index lines. I want to compare file1 and file2 and send the similar lines to a new text file. I've been googling this for awhile now and have been trying grep ...
0
votes
0answers
27 views
how to (run/start) shoutcast via php in linux?
my code now is
<?php
$command = "/path/to/sc_serv /path/to/sc_serv.conf";
$PID = shell_exec("$command > /dev/null & echo $!");
?>
this will give me the PID number but will close ...
-1
votes
1answer
25 views
Secure upload of an image. php [closed]
I have upload images website, what kind of checks should i do ? For example: mime check, is valid image check, and what else? i won't to prevent uploading of virus/shell/no-image file. Thanks you. ...
0
votes
1answer
27 views
Linux command - adding Time elements to file name
I run regular backups of my phpbb forum files from the command line:
now=$(date +"%m%d%Y")
zip -r phpbb_complete_file_backup_$now ~/public_html/forum/*
I'd like to add the hour and minutes to the ...
0
votes
1answer
34 views
Prevent upload shell files. php
I have image upload website. Someone is uploading here shells files.
My validations are:
- Check file's mime (only image's mimes able)
- Check if getimagesize returning array (by is_array)
If not, ...
0
votes
2answers
23 views
Ruby gets method throws an exception when arguments are passed from the console
I have experienced some ODD behavior from the code below:
require 'CSV'
$DEBUG = ARGV.empty? ? false : ARGV[0] #Global debug flag.
class PhoneBook
#class code here etc etc
end
...





