Tagged Questions
1
vote
2answers
33 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
35 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
4answers
51 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 ...
-3
votes
2answers
74 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
...
-4
votes
0answers
39 views
Avoid input password or other things every time in linux
I need to excute a shell script and I want to avoid input password and others each time when I want to excute this script. How can I do? Expect? Whether are there other ways to avoid it?
I give an ...
0
votes
3answers
21 views
Not able to force exit on Jenkins Build
I've been having a lot of trouble with this so here goes.
I have a Jenkins build that executes the following shell script:
#!/bin/sh -x
if [ 'grep -c "It misses" log' -gt 0 ];
then exit 1;
fi
I ...
1
vote
0answers
25 views
grep fails in upstart script [migrated]
I have an upstart configuration for a service which needs to check the existance of a process on it's startup. This sounds fairly easy but I'm already trying for 3 hours to get this thing solved and ...
0
votes
1answer
23 views
How to delete the last space at the end of each line in a text file? (shell scripts)
I have a file like this:
z E l f
A l t E^ t
d Y s
m u s t
z E l f s
x @ w e s t
s t e t s
h E p
w i
t E n
o G @
o G @ n
m I s x i n
s t O n t
and I need to remove a space at the end of each line.
...
1
vote
3answers
32 views
Assign variable from SSH server to local machine variable
I have two scripts that are being run. One runs from a client workstation and calls a script on a server. I need a variable from the server script and I figured I could do it this way, but it isn't ...
-2
votes
0answers
39 views
Is it Harm to the system…?
In my web application, I need to confirm whether the user logged out before shutting down the system. I added a VBScript to handle the shutdown. Given the below VBScript I am using, will I do any harm ...
0
votes
1answer
33 views
Determine command status in C shell
I wrote my c shell script which need to determine the command status.In the below program
line 4 command was not successful But I got status still 0.I could not understand why.
As per my understanding ...
0
votes
2answers
50 views
How to understand the following shell script?
I would be glad if somebody could explain me what this part of the code does
[ -n "${0%/*}" ] && cd ${0%/*}
. ./environment.sh
. ./readParams.sh
I understand that this script is reading ...
0
votes
1answer
35 views
Shell script permission denied when conditional test
Whenever I try to run my shell script, I'm getting an error under 4 different if tests.
script.sh 45: script.sh: : Permission denied
script.sh 52: script.sh: : Permission denied
script.sh 59: ...
0
votes
1answer
45 views
Shell Scripting - Must not generate extra messages and its not but says I am
There is a similar question about this issue. But not the same solution.
I am to create a shell script that takes two parameters:
1.the desired file extension
2.the name of a single file to be ...
1
vote
1answer
46 views
Run script on remote machine via telnet (not SSH)
I need to somehow run a script which resides on a remote machine running Ubuntu.
SSH or any other connection type that requires complex encryption is not possible.
The client that will connect to the ...
0
votes
2answers
32 views
Shell Script for removing craskernel
How can I remove crashkernel parameter and attached value from grub.conf ?
title RHELOS (3.6.18-274)
root (hd0,0)
kernel /vmlinuz-3.6.18-274 ro root=LABEL=/ nmi_watchdog=1 ...
1
vote
2answers
32 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
1answer
34 views
-@ precedes shell script, what does it mean
please see the following code in busybox makefile
scripts/config/conf: scripts/config/Makefile
$(MAKE) -C scripts/config conf
-@if [ ! -f .config ] ; then \
cp $(CONFIG_DEFCONFIG) ...
1
vote
3answers
65 views
Interpreting binary files as ASCII
I have a binary file (which I've created in C) and I would like to have a look inside the file. Obviously, I won't be able to "see" anything useful as it's in binary. However I do know that contains ...
0
votes
2answers
57 views
Using Linux Shell to run a Client - Server for numbers of time
I'm coded two programs, one is Server, the other is Client.
The purpose of these two programs is file transfer. First, the Server program will be started up, then the Client program. the client ...
1
vote
0answers
39 views
Executing python script from java passing arguments
I Asked some days ago about executing python script from java. It solved my problem partially. But now, I am not able to pass any parameter and make that script to do anything.
My script has to ...
0
votes
1answer
73 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 ...
0
votes
1answer
34 views
Batch script to log in SSH server on Windows
I'm trying to make a batch script to log in into a SSH server and execute a few commands. The start command is:
plink -ssh user@99.99.999.99
Then I need to enter the User Name and Password like the ...
-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
...
1
vote
3answers
46 views
Apply a VIM key sequence to all files in a directory
I want to indent all my files using the command gg=G of VIM. Is there anyway to write a script to do that ?
I imagine it can be something like
find . | xargs -n 1 | vim [ with some option to indent ...
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 ...
-3
votes
0answers
23 views
New coder here, need help how to start my script for a short database entry
I need help to write a shell script that
when ran, It will allow user to input
a dept id
a name
a dept name
and a employee id.
I am having trouble how to start this script
First I have to create a ...
-1
votes
2answers
33 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 ...
-5
votes
0answers
23 views
Can we have a script that created automatically backup of a file [closed]
Can we have a script that whenever someone edit a specific file , backup of that file automatically created ???If yes kindly guide me please. how to proceed or if possible pls provide me some ...
6
votes
6answers
183 views
Add/subtract variables in a really dumb shell
I am writing a shell script which works on my local /bin/sh fine (dash on Ubuntu 13.04), but I unltimately need to run it on a dumb box where I'm getting an error because of an operation on variables:
...
0
votes
1answer
38 views
vbs script to change shortcuts working in 7 but not in XP
I'm trying to write a script that will update desktop shortcuts in WinXP and Win7 (32 and 64bit). I'm having 2 problems, in XP, the target path of the shortcut won't change, and in both XP and 7, the ...
2
votes
2answers
74 views
Explain this shell script
Autoconf documentation recommends this snippet for portability:
# Create a temporary directory $tmp in $TMPDIR (default /tmp).
# Use mktemp if possible; otherwise fall back on mkdir,
...
1
vote
2answers
52 views
vbs registry backup working in win7, but not in xp
I'm writing a VBScript to make some registry changes, so before I make the changes, I try to backup the registry to a file. This works fine in my Win7 64bit, but when I try to run it in WinXP 32 bit ...
-1
votes
1answer
33 views
Search a string and alter /replace string after “=”
Suppose I am in following directory A/B/C/prop and need to check e0and e1 files out of other 100 files.In these two file i have following entries:
$DBConnection_target=targetname
...
0
votes
3answers
54 views
List of files to check if present
I have a large list of files, and I need to check to see whether they are somewhere on my linux server. Some of them may be and some of them may not.
Is there a command line tool to do this?
Or ...
0
votes
1answer
28 views
Wallbase script error file cookies not found and sed error
I am trying to use the following script : https://github.com/sevensins/Wallbase-Downloader for wallpapers but I got the following errors :
Cannot open cookies file ‘cookies.txt’: No such file or ...
0
votes
2answers
30 views
How to add quotes to a string in shell script
I have a string for which i need to add quotes to a substring. How can i do that in shell scripting?
the string is
Database.Procedure(Frequency,P1,P2,P3)
I have to add single quotes around ...
-1
votes
0answers
23 views
how to add an icon to my shell script [closed]
I have a small desktop shell script which runs some applications in the /usr/bin directory and I want to add an icon for this shell script .. I don't want to use a launcher because it restricts me ...
-3
votes
0answers
44 views
Connect to remote terminal through PHP [closed]
How can I connect to Remote Terminal using php code for running some commands there. I know SSH can be used to connect to remote terminal but dont know how to use it in PHP.
Thanks.
0
votes
5answers
74 views
AWK regex convert 3 letter word beginning with 'a' to uppercase
I have my regex expression to find 3 letter words beginning with "a"...
\b[aA][a-z]{2}\b
(seems to work, according to this! check it out: http://rubular.com/r/Jil0E4WZnW)
Now I need to know how ...
0
votes
1answer
57 views
Shell scripting: Contact list [closed]
I have no idea how can I do this. I need to make an menu option where you can search a contact by his nick, and then modify his data.
For example:
Name - Nick - Phone - Mail
John - Johnny - ...
1
vote
3answers
53 views
How to create and access a shell config file from a shell script? [duplicate]
I am working on a shell script that when first opened asks the user for some info. This info needs to be stored on a config file for future use so that the user doesn't have to answer the same ...
0
votes
1answer
54 views
Shell scripting: cat configuration archive
Right now in the bash script I have this:
firstParam=$1
secondPara=$2
if [ -n $firstParam ] ; then
if [ $firstParam != "--x" ] ; then
echo "Incorrect"
else
if [ -n ...
0
votes
1answer
37 views
Find files created within a second or two
Im must to find files created within a second or two but i have no idea how. Im think best way is some find pattern. Or maybe shell script. Can someone help ?
1
vote
2answers
35 views
Parsing mixed arguments in a script bash
I need to implement a script called with mixed (optional and non-optional) arguments for example -
./scriptfile -m "(argument of -m)" file1 -p file2 -u "(argument of -u)"
in a random order. I've ...
0
votes
2answers
22 views
Extracting a sub-string from a Variable in C Shell Script?
I am absolutely new to C Shell Script (.csh). I dont know why the following script is not working properly.
set Version;
wmic /append: "$Version" wmic os get version; #This prints: Version
...
2
votes
4answers
100 views
grep while read line alternatives
I have a log file.log:
toto string1 tata string2 tito string3
tata tati string3
titi string1 tato string2 tati toto
.....
tutu string1 tita string2 tita string3
I need to extract string1, string2 ...
0
votes
2answers
38 views
How to rename all files in a folder and create a renaming map
Note: I have access to both Linux and Windows platform so answers for any of these platforms are fine.
I have a folder which contains less than 10K .png files. I would like to:
1. rename all files ...

