The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
1
vote
4answers
90 views
finding pattern in a file
I have a txt file of 500 rows and one column.
The column in each row appears some what like this (as an example I am pasting two rows):
...
2
votes
4answers
5k views
Getting exit value of a shell script 255 every time
I have a jar say test.jar having TestJar as its main class, a shell script jar_executor.sh,and a java file. My test.jar will return 1 if we pass 1 as an argument and 2 if we pass any other value.
My ...
1
vote
4answers
78 views
$@ becoming messed up
I am trying to write a bash script that will examine the first argument, and if its one of particular values then it will remove that argument from the arguments and set some stuff up:
#!/bin/bash -x
...
0
votes
4answers
323 views
problem in executing shell script
i am new to shell scripting. My objective is to execute the ls command through a shell script but it does not return anything. Mine is a BASH shell
set p = `/bin/ls`
echo $p
Where am i going wrong
5
votes
5answers
2k views
How to kill all processes matching a name
Say I want to kill every process containing the word amarok. I can print out the commands I want to execute. But how do I actually make the shell execute them. ie.
ps aux | grep -ie amarok | awk ...
0
votes
2answers
302 views
Bash script file modification dependency check
I'm trying to do a simple check in a bash build script to check if the built file XML is newer than the component xml files in a directory.
So basically I have a src/ directory with 10 XML files and ...
0
votes
2answers
215 views
Call PHP script from bash from different machine
I need to call a PHP script on machine1 from a .sh script on machine2. How can I do this?
Basically I need to pass a parameter to the respective PHP script and make it run using it.
Thanks!
0
votes
2answers
831 views
Passing sed a shell-script variable which contains spaces
Ignore the .bat extensions, just a habit from the old dos batch file days.
I have 2 simple shell scripts. I want to pass a filename with spaces (some file with spaces.ext) from little.bat to big.bat, ...
2
votes
6answers
207 views
Read a part of directory name and get rid of carriage control usind sed or similar
In some script, it reads the directory name and get things like
66.9090_89.4450_168.0250_ABC3/
I need to extract the thing "ABC3" so I try
sed -i -e "s/_/ /g" temp_direc
so I get
66.9090 ...
2
votes
3answers
160 views
Using awk with variables
x=3
A=`echo $A|awk '{print $x}'`
echo $A
doesnt print 3. How can i use variables with awk*
4
votes
2answers
722 views
What is the difference between the various shell profiles?
What's the difference between ~/.bashrc, ~/.bash_login, ~/.bash_logout, ~/.bash_profile, ~/.profile, /etc/profile, /etc/bash.bashrc, /etc/ssh/ssh_config and sshd_config, when are they loaded and what ...
1
vote
1answer
265 views
After exiting custom startup shell script, exit into default startup shell?
You have to excuse me if I use the wrong language here of if I'm asking an obvious but that is, after all, why I'm here.
I'm just getting to grips with shell scripting and have written a small script ...
0
votes
1answer
277 views
How are variables passed through the PAM authentication system
If application A calls a PAM service "myapp", and the PAM service "myapp" is configured to use the pam module pam_exec.so (auth required pam_exec.so myscript) to call an external shell script:
Q: How ...
1
vote
4answers
172 views
Find file's own path
I'm trying to find what the unix equivalent of the Windows/DOS variable %cd% is. What I'm looking for is an environmental variable or a workaround that will let me set a variable to the path of the ...
5
votes
2answers
314 views
Invoking program when a bash function has the same name
I have the following function in my bash script:
make() {
cd Python-3.2
make
}
When make is called within this script, this function is invoked, which recurses. The call to make inside the ...
0
votes
3answers
269 views
how to trim file - remove the rows which with the same value in the columns except the first two columns
Here I want to have your help on trimming a file, by remove the rows which with the same value in the columns except the first two columns.
the file I have (tab-delimited, with millions of rows, and ...
22
votes
6answers
24k views
Check if a file exists with wildcard in shell script
I'm trying to check if a file exists, but with a wildcard. Here is my example:
if [ -f "xorg-x11-fonts*" ]; then
printf "BLAH"
fi
I have also tried it without the double quotes.
0
votes
1answer
2k views
Custom PAM config: How can I pass username/password parameters to an pam_exec.so module?
I'm using openvpn, a PAM aware app. It has the following useful documentation:
For example:
plugin openvpn-auth-pam.so "login login USERNAME password PASSWORD"
tells auth-pam to (a) use the ...
1
vote
1answer
203 views
How to up an aplication on remote linux and wait for answer
Someone can tell me the best way, through a web Java application, how to run an application on a remote machine (linux) and how to know if this application has already completed. I know the ...
5
votes
2answers
360 views
How do I determine if a shell script is running with root permissions?
I've got a script I want to require be run with su privileges, but the interesting scripted command that will fail comes very late in the script, so I'd like a clean test up front to determine if the ...
1
vote
2answers
221 views
How can i execute a shell script and close my app in cocoa
I would like to run a shell script from my cocoa app when clicking on a button. I can easily use the system() call to do that, but that's not all i need. I need the app to close as soon as it calls ...
6
votes
2answers
236 views
Bash bug re $LINENO— or am I just confused?
Consider:
#!/bin/bash
echo '
' $LINENO
echo '' '
' $LINENO
The first echo correctly prints a 4, but the second echo prints a 5 instead of 6. Am I missing something, or is this a bug? (Using ...
0
votes
2answers
324 views
invoking batch script/Java code from Oracle database
I have a requirment, of invoking a Java file from Oracle database. In my project, whole of my business logic is in database, but there is a requirement of invoking a third party system (SOAP / RMI ...
0
votes
1answer
55 views
Suggest an Optimized code for given Nested Loop
Kindly help me to make the below code is more readable or (Suggest Any optimization )
@for i in $(LIST_A); do \
for j in $(LIST_B); do\
if [ "$$i" = "$$j" ] ;then\
...
0
votes
2answers
226 views
how to map one csv file content to second csv file and write it another csv using unix
After writing some unix scripts I am able to manage to get data from different xml files to csv format and now I got stuck with the following problem
file1.csv : contains
1,5,6,7,8
2,3,4,5,9
...
2
votes
3answers
635 views
Replacing one char with many chars with using tr
`echo "a~b" | tr '~' "=="`
This outputs a=b. But i wanted a==b.
How can i do this with using tr?
1
vote
5answers
283 views
Shell script replacement?
I'm starting to get sick of shell scripts to perform automations and glue codes between stuff. I love using it for quick and dirty data processing, but even for simple 3 line code that spawns a ...
0
votes
1answer
752 views
calling function from command line
I have written a function that is working as expected within the shell script. But how do I call it from command prompt? I tried the alias command, but I get an error
bash: syntax error near ...
1
vote
1answer
372 views
Making MSBuild's Exec task display the interactive shell
The following two paragraphs are background - they just explain why I need to do such a weird thing. If you don't care you can skip them and go directly to the question.
I'm a Vim user and I started ...
0
votes
1answer
284 views
shell script command line option
I want command line option like this in korn shell script. I know we can use getopts for single hypen. What is the beast way to use both command line option?
script [-u|--upload] [-r|--run] ...
1
vote
1answer
107 views
Logging terminal while running an install script of sorts
I have written an install script in shell that does some configuration of various things such as xserver, network, etc and then installs a few RPM's which is no problem. But I want to be able to log ...
0
votes
2answers
328 views
Parse Linux df output with C# regular expressions
How do I parse the df-Bk Linux command output with C# regular expressions?
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 7913216K 2348412K 5165992K 32% /
...
0
votes
3answers
335 views
Shell script - No such file error
#!/bin/bash
local dept=0
while [ $n < 5 ]
do
echo $n
$n++
done
this code returns error 7: cannot open 5: No such file
Where should I change?
0
votes
2answers
710 views
Rename a file name with regex
I have a set of files (ABC.AM.*.*.20*.*) in a folder
e.g.: ABC.AM.00.13.201106.00014, and I need to rename this to ABC.AM.00.13.201106.01014. I am in AIX so rename command is not available.
just a ...
0
votes
3answers
219 views
Shell script - I want to traverse through 2nd argument to last argument
How can I traverse through 2nd argument to last argument
like:
for arg in $2-$@
do
echo $i
done
Please help
9
votes
2answers
393 views
String comparison doesn't work
For some reason this script prints "string are equal"
#!/bin/bash
A='foo'
B='bar'
if [ $A=$B ];
then
echo 'strings are equal'
fi
What am I doing wrong?
1
vote
3answers
342 views
xml schema validation using shell script
Is it possible to validate an XML file against a XML schema definition using shell script? Its easy to do with Java but can't find in the internet on how to get this done using shell script.
3
votes
1answer
271 views
lisp interpreter in python
I'm curious how a part of Peter Norvig's Lisp interpreter works. One can define functions in this Lisp interpreter...how does this work? I'm a beginner, and just would like a simple explanation.
...
0
votes
2answers
4k views
Shell script doesn't execute from cron job
shell script:
#!/bin/sh
services=( httpd named proftpd mysqld dovecot postfix webmin)
for service in ${services[@]}
do
if ps ax | grep -v grep | grep $service > /dev/null
then
echo "$service ...
4
votes
1answer
230 views
Arrow keys, home, and end not functioning in django terminal
I'm using django 1.2.5 and python 2.7. For some reason the terminal type is wrong in the django shell and it is annoying the crap out of me. If I press up, down, right, left I get this:
>>> ...
1
vote
1answer
2k views
How to convert xml file which is in non UTF-8 format to xml that is UTF-8 compliant
I have a huge xml file whose sample data is as follows :
<vendor name="aglaia"><br>
<vendorOUI oui="000B91" description="Aglaia Gesellschaft für Bildverarbeitung ud ...
1
vote
2answers
639 views
how to delete extra files from backup with shell script?
A backup Shell Script
#!/bin/bash
backdest=/home/backup
date=$(date "+%F")
backupall="$backdest/arch-full-$date.tgz"
backuphome="$backdest/jary_p-$date.tgz"
tar -czpvf $backupall / ...
0
votes
1answer
1k views
how to delete certain words from files with shell script?
i have to delete every word containing at least one number from each file given through the command line as parameter. this is my code:
while [ "$*" != "" ]; do
if [ ! -f $1 ]
then echo ...
1
vote
5answers
306 views
Is there a way to send some procesess with known pid in background?
I am new in Linux and system programming .
I Want to write a c program which finds processes whose cpu% usage are more than a specific given value and sends them to background.
anybody can help me !
...
0
votes
3answers
207 views
how to update a file with info from standard input (keyboard) with shell script?
Basically what I have to do is this:
I have a file containing names of students and their partial grades:
(firstname lastname grade)
And what I have to do is update that file with their exam ...
27
votes
7answers
6k views
Why do you need ./ (dot-slash) before script name to run it in bash?
When running scripts in bash, I have to write ./ in the beginning:
$ ./manage.py syncdb
If I don't, I get an error message:
$ manage.py syncdb
-bash: manage.py: command not found
What is the ...
1
vote
1answer
119 views
Apache Cron Back Up To Github
I've got Apache cron making a back up tar file of my Codeigniter application and placing it in /backup of the server. I'd like to send this to Github, but I'm a little stuck about how to do this (my ...
2
votes
2answers
426 views
invoking a bash script by itself
I need to invoke a bash script by itself with a different set of arguments that would make it run as a background process, so I am using something like:
if [[ $a == $b ]]
then
$0 -v &> ...
1
vote
2answers
231 views
/bin/sh - non interactive usage from Python
I am invoking cmd from Python like this:
subpocess.Popen(['coffee'], shell=True)
which I belive is translated to:
/bin/sh -c "coffee"
From docs I have read that in non-interactive mode files ...
5
votes
4answers
317 views
bash scripting de-dupe
I have a shell script. A cron job runs it once a day. At the moment it just downloads a file from the web using wget, appends a timestamp to the filename, then compresses it. Basic stuff.
This file ...

