The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
-2
votes
1answer
14 views
shell code to Extract/Remove files older than 1000 days from tar archive in linux system
I am not able to extract/remove files older than 1000 days from a tar archive in linux system.
Please advise the optimal solution to achieve this.
Appreciate your solutions.
Thanks in advance
1
vote
1answer
11 views
Run a shell script on Ubuntu startup
I have a shell scrip that runs on jvm, it works as I write: sh /opt/bin/myshel.sh
I added a shell script to /etc/inti.d with this detail:
#! /bin/sh
### BEGIN INIT INFO
# Provides: ...
0
votes
0answers
8 views
unoconv works from terminal using www-data but not from php script also as www-data
I wrote the following function in php
public function convertExcel() {
$inputFilePath = $this->outputFilesPath . 'Excel' . DS . $this->quotation['id'] . DS . $this->quotation['name'] . ...
0
votes
0answers
13 views
How to use crontab in Android?
I can't find answer to my question: Is it possible to run crontab to reboot Android using busybox (or other means)
Tried to run crontab, and it complain about unknown uid 0.
Tried to run reboot, and ...
2
votes
4answers
49 views
How to manage nohup.out file in Tornado?
I built a web service using tornado and it serves days and nights. I used the command to start my service:
nohup python my_service.py &
The service log is able to write to nohup.out. However, ...
0
votes
6answers
56 views
incrementing a number in bash with leading 0
I am a very newbie to bash scripting and am trying to write some code to parse and manipulate a file that I am working on.
I need to increment and decrement the minute of a time for a bunch of ...
1
vote
4answers
25 views
save the output of a bash file
i have some files in a folder, and i need the first line of each folder
transaction1.csv
transaction2.csv
transaction3.csv
transaction4.csv
and i have the next code
#All folders that begin with ...
3
votes
1answer
37 views
Using a shell script but it fails with spaces on directory or name
I'm relatively new to Linux script and I'm having an issue with one I'm trying to use when there are spaces in the directory name or file name. The script shrinks PDF files so that i can put them in ...
59
votes
6answers
71k views
Logical operators (“and”, “or”) in DOS batch
How would you implement logical operators in DOS Batch files?
0
votes
1answer
9 views
How do I overwrite multiple lines in a shell script?
I want to write multiple lines over and over to the shell. Something like
echo "One Line"
echo "Two Lines"
echo "\r\b\rThree Lines"
echo "Four Lines"
Ideally this would first output:
One Line
Two ...
0
votes
3answers
40 views
grep or sed — need to extract a particular text
How would I extract only a substring of matched text.
I have an XML file with multiple lines. However this is what I am concerned with.
<url>/localhost/index.html</url>
I tried
cat ...
0
votes
1answer
46 views
How do I merge all the cases into One
How can I merge the following two case scripts?
Script 1
#!/bin/bash
Ver=0
n="192.168.1.20:/backup/b1"
o1="192.168.1.20:/backup/b2"
User="1234"
echo "n Latrest version"
echo "o1 Previous ...
0
votes
0answers
56 views
Terminating half of a pipe on Linux does not terminate the other half
I have a filewatch program:
#!/bin/sh
# On Linux, uses inotifywait -mre close_write, and on OS X uses fswatch.
set -e
[[ "$#" -ne 1 ]] && echo "args count" && exit 2
if [[ ...
0
votes
1answer
19 views
Set PHP path correctly for MAMP Pro
MAMP Pro makes you edit a php.ini template through the application and it creates the file in /Library/Application Support/appsolute/MAMP PRO/conf/php.ini each time MAMP Pro is started. How do I get ...
0
votes
1answer
14 views
Shell if else nested loop error
This is my script ...i get this error below. I suspect second if else is wrong but unble to figure that out ..
read -p "Do you wish to continue the merge session? (y/n) " RESP
if [ "$RESP" = "y" ]; ...
1
vote
5answers
31 views
Select line below search expression in log file
I am trying to search logs for an expression, then select the line below each match.
Example
I know I want the lines below CommonText, for example given the log data:
CommonTerm: something
This ...
-3
votes
1answer
32 views
Implementing Algorithm Syntax Error
#!/bin/ksh
extended_gcd()
{
a=$1
b=$2
x=0;
lastx=1;
y=1;
lasty=0;
while ((b!=0));
do
quotient=$a/$b
tmp3$b
b=$(($a%$b))
a=$tmp3
tmp3=$x
$x=$lastx-$quotient*$x
...
1
vote
0answers
11 views
How to exit SFTP when cd command fails
Shell script for file transfer by SFTP is already written and working fine on AIX Version 6.1. I am developing ETL with SAP Data Services and real new to shell scripting. During unit testing, I ...
1
vote
3answers
469 views
Running ios-sim with Jenkins
I'm trying to start my app from the command line using ios-sim but this is what I get:
Started by user User
Building in workspace /Users/Shared/Jenkins/Home/jobs/UI Testing/workspace
[workspace] $ ...
0
votes
2answers
61 views
Bash does not list all files with ls
i have a bash code, and i need list the files of a path and save in a file
processVerification(){
ls $1 > testFiles
}
and in the folder i have the files
transaction-2012-01-20.csv
...
0
votes
3answers
27 views
downloading images from links as column values in a csv file in linux/unix
I have a temp.csv file that has 4 columns and plenty of rows. The column0 has a link that are images from the internet like 'www.abc.com/one.jpg' and so on. I usually download any link using the ...
1
vote
3answers
22 views
Wrap STDIN with characters
I would like to turn "{something: here}" into "[{something: here}]"
For example:
$ echo "{something: here}" | magic_command
$ [{something: here}]
I want to do it all as part of a bash one liner ...
0
votes
2answers
46 views
How to use command grep with several lines?
With a shell script I'm looking for a way to make the grep command do one of the following two options:
a) Use the grep command to display the following 10 lines of a match in a file; ie, the command ...
1
vote
2answers
15 views
git alias to delete local and remote
I'm trying to write an alias to delete both a local and remote branch at the same time, but I can't figure out why the syntax is not working. In ~/.gitconfig, I've tried the following aliases, but ...
0
votes
3answers
324 views
Create an Applescript or Shell Script to Unzip and Rename Files?
I have several folders of .zip files that I would like to do the following to:
Extract the enclosed files or folders to the same location as the .zip
Rename the resulting file or folder to whatever ...
1
vote
4answers
56 views
Find and update(append) csv with shell script
Input file:
ID,Name,Values
1,A,vA|A2
2,B,VB
Expected output:
1,A,vA|VA2|vA3
2,B,VB
Search file for a given ID and then append a given value in the values {field}
use case : append ...
1
vote
5answers
50 views
Replacing text in a file from a list in another file?
I asked this question before but don't think I really explained it properly based on the answers given.
I have a file named backup.xml that is 28,000 lines and contains the phrase *** in it 766 ...
1
vote
2answers
105 views
How to open `find` output with vim?
I've written a function that will find a function or class definition among Python files. It generates an argument list to be used with vim. It works for the first argument / file, but fails for ...
0
votes
0answers
18 views
Tesseract with some tiff from Ghostscript in a shell script not work
I have the problem that my ShellScript don't work with some PDFs
#!/bin/sh
name=$(basename $1)
tiff=/...somewhere.../$name.tif
text=/...somewhere.../$name
gs -q -dBATCH -dNOPAUSE -sDEVICE=tiffgray ...
1
vote
1answer
28 views
Wildcards in Korn Shell
When I‘m in my home directory and type “ls *s*” in the terminal, it shows me all folders and files that have ‘s’ in their names (Music for example). But when I type “ls *si*”, it doesn‘t show anything ...
0
votes
1answer
29 views
Difference between $(command) and `command` in a script [duplicate]
What is the difference between executing a command like this:
var=$(ls -alh /dir)
And doing it like this:
var=`ls -alh /dir`
Is one method able to be used in more interpreters than the other?
0
votes
1answer
16 views
Executing korn shell script
I can't execute my korn shell script without the ksh command. I included #!/bin/ksh in the first line of the script but when I try to execute it only by name it says no such file or directory. Can you ...
2
votes
5answers
6k views
ssh script that automatically enters password
I need to write an ssh scripts that automatically enters the password. Say I need to ssh to myname@somehost with password a1234b. How would I write that script? I tried
#~/bin/myssh.sh
ssh ...
0
votes
4answers
48 views
Find and replace using a list in text file?
I'm not even sure if this is possible, but sure am hoping that it is.
I have this line 766 times in the file backup.xml:
*** Hosting Services
I then have the file list.txt which contains 766 lines ...
0
votes
0answers
35 views
Interactive C program with shell key mapping?
I want to write a interactive program in C just like shell, but I do not need to execute external
program. I want to add a feature like emacs-style key binding, history. e.g. enter Ctrl+P will show
...
27
votes
8answers
13k views
bash/fish command to print absolute path to a file
Question: is there a simple sh/bash/zsh/fish/... command to print the absolute path of whichever file I feed it?
Usage case: I'm in directory /a/b and I'd like to print the full path to file c on the ...
2
votes
2answers
43 views
get the sql query result with out table format
Like --disable-column-names option, do we have a option to get the sql query without table format.
example:
mysql -u username -ppassword --disable-column-names --execute "select name from test"
...
-1
votes
0answers
13 views
Retrive Weblogic Status using UNIX Shell Script
How to check weblogic server status using unix shell script. daily i have to check weblogic server statys using admin console. so, for automation i need a code for checking server status.
1
vote
2answers
39 views
sed command that works for Solaris, Linux and HPUX
I need to change a directive in a config file and got it working in Linux but in Solaris, it says command garbled.
Here is the directive
enable-cache passwd yes
I need to ...
0
votes
4answers
75 views
Unix: Get the latest entry from the file
I have a file where there are name and time. I want to keep the entry only with the latest time. How do I do it?
for example:
>cat user.txt
"a","03-May-13
"b","13-May-13
"a","13-Aug-13
...
2
votes
4answers
41 views
Trying to grep part of a file name in shell script?
I have a very simple grep problem but can't seem to solve it. I have several files like this:
sample.txt
sample7.doc.txt
another_sample.sample.lst.txt
three.txt
...And I just want to grab ...
4
votes
6answers
4k views
Give the mount point of a path
The following, very non-robust shell code will give the mount point of $path:
(for i in $(df|cut -c 63-99); do case $path in $i*) echo $i;; esac; done) | tail -n 1
Is there a better way to do ...
0
votes
1answer
8 views
posix shell: stdout to file, exitcode to a variable and last line of stderr to another variable
I implemented the following in POSIX shell (not bash):
fail.sh:
#!/bin/sh
echo something useful
echo warning 1 >&2
echo warning 2 >&2
echo an error message >&2
exit 100
The ...
9
votes
5answers
5k views
How do I grab an INI value within a shell script?
I have a parameters.ini file, such as:
[parameters.ini]
database_user = user
database_version = 20110611142248
I want to read in and use the database version specified in the ...
10
votes
2answers
2k views
Semicolons superfluous at the end of a line in shell scripts?
I am editing this shell script (by somebody else) which contains the following.´:
case $1 in
0 )
echo $1 = 0;
OUTPUT=3;;
1 )
echo $1 = 1;
OUTPUT=4;;
2 )
echo $1 = 2;
...
0
votes
0answers
32 views
How to redirect utf-8 output into txt file
I ran a python script to write my log files using:
nohup python my_script.py >> log.txt
However, I thought maybe it is >> in Linux which doesn't support utf-8 characters.
In my ...
0
votes
3answers
35 views
How to add new number into each line?
I have this line about 500 times in a my file backup.xml
my-company-review/</link>
Is there a way through command line, perl, etc. to add a number into the line after the word review. For ...
0
votes
1answer
9 views
How to find and replace on a specific amount of times?
I need to find the first 413 times this is in a text file:
<title>Local SEO Services - The Company Review</title>
And replace it with this:
<title>Local SEO Services - TheCompany ...
2
votes
3answers
39 views
Sorting multiple non-standard columns in a shell script
I have a list of files, with full path, that I need to sort in a bash shell.
The list will look like
/total/path/software/version1.2.3.4/filename.10.cfg -- infomation grepped
...
5
votes
3answers
4k views
Shell Bash: Passing argument to alias
Is it possible to do the following:
I want to run the following:
mongodb bin/mongod
in my bash_profile I have
alias = "./path/to/mongodb/$1"
Thanks everyone!








