Tagged Questions
2
votes
2answers
23 views
count occurrences of char in string using bash
I need count the numbers occurrences of char in string using bash,
when use for example "t" the return of routine is the number of occurrences , but when using comma or semicolon etc, is cero.
for ...
3
votes
0answers
36 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 ...
0
votes
3answers
44 views
How to properly form rm with xargs -a?
A coworker showed me a nifty way of using rm and xargs for deleting filenames listed in a .txt - but I can't remember what he did.
I ran
echo | xargs -a file.txt
where file.txt contained
1
2
3
4
...
0
votes
1answer
22 views
While creating the tar file the entire path is created as the tar file
Hi I have created a shell script to backup the content from a directory. Its creating the file but its preserving the entire path.
Here is my code
#!/bin/sh
#creating the destination file
...
0
votes
2answers
57 views
if i given comment(#) in 1st line after #!/bin/sh in 2nd line so what will be happend
1st shell script
#!/bin/sh
# purpose: print out current directory name and contents
pwd
ls
2nd shell script
# purpose: print out current directory name and contents
#!/bin/sh
pwd
ls
what is ...
2
votes
3answers
48 views
rename multiple files in shell script
rename multiple files...in shell
I have 3 files in a dir
abc.tar.gz
abc2.tar.gz
abc3.tar.gz
using this command :
rename abc abc.part abc*.tar.gz
it converts them into
abc.part.tar.gz
...
1
vote
2answers
47 views
How to get cpu sirq in linux shell script?
Following is the output of top -b
Mem: 95752K used, 29164K free, 0K shrd, 0K buff, 35176K cached
CPU: 5% usr 9% sys 0% nic 0% idle 0% io 0% irq 84% sirq
I need to continuously monitor ...
0
votes
2answers
79 views
BASH: Using cut on space delimited file: Treating two spaces as one
I need to convert file full of lines like this:
# 2007 4 29 10 1 17.98 blah other stuff
into lines formatted like this
2007.04.29.10.01.17
The original line is space delimited, and when a ...
0
votes
0answers
44 views
sh (shell), SEGV_MAPERR, Segmentation Fault [closed]
We have a strange situation with the core dumps.
'sh' (Shell) generates a core dump with the following information (when seen with gdb).
Core was generated by `sh'.
Program terminated with signal 11, ...
2
votes
1answer
50 views
bash alias - running two commands
How do I make an alias in my .bashrc such that I can run two commands with arguments?
For example, compile source and run.
gcc-run -lm example.c
would run
gcc -lm example.c
./a.out
The closest ...
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
2answers
47 views
How to write file from sh
I have a script I like to execute in python via subprocess (yes, it has to be in sh).
Now I call sh like so:
subprocess.check_call( ['sh' + command] )
where command is:
echo 'someformat : : ...
0
votes
1answer
33 views
shell script to move files improperly concatenating strings
I was trying to write a shell script to move some files for me, but I made the mistake of running said script without double checking the variables it was using first.
Here's the script I'm writing:
...
2
votes
2answers
51 views
Why does [ a -gt b ] (not [ “$a” -gt “$b” ]) appear to work?
I have one problem in unix shell scripting. Let me ask you with very simple example.
suppose, I am getting user input and comparing two numbers.
echo "Enter the first number"
read a
echo "Enter the ...
0
votes
1answer
24 views
How to distinguish function paramaters from the script arguments in a /bin/sh script?
Apparently you can access the arguments of a shell script via $1, $2, etc.
But if you do a function inside the script, you access the parameters to a function in the same way.
How to do it if I want ...
0
votes
3answers
64 views
how to get the last login time for all users in one line for different shells
I can make the following line work on ksh
for user in $( awk -F: '{ print $1}' /etc/passwd); do last $user | head -1 ; done | tr -s "\n" |sort
But I'd like to make it work on UNIX sh and UNIX csh. ...
0
votes
1answer
95 views
Sending email through Cygwin
I have a written a shell script wherein I want to send an email through it. I am executing this script on windows through cygwin. I have installed email package on my machine. However, I am having a ...
1
vote
2answers
116 views
Can I store file contents to a variable in a shell script?
Say I have a file file.txt with data (say '100') in it. I want to read the contents of this file to a variable for future processing. I want this to work on both Linux and Solaris. How can I do this?
0
votes
1answer
82 views
DB2: Setting Integrity in parent-child order
I am trying to write a script (shell+DB2) which sets integrity of all tables in database.
I used below dynamic SQL to generate a script and executed it:
db2 -x "select 'SET INTEGRITY FOR '|| ...
0
votes
1answer
40 views
Edit html file in the .sh script
I have static html file at 'docs/index.html' with ~ 200 lines of code.
I need to add html tags to it in 2 places with .sh script. I know there is command sed
to edit files, but can't figure out how it ...
1
vote
1answer
55 views
show git diff and git status simultaneously
I'd like a way to get a pager-view (less) of a buffer of git diff and git status to get a nice complete summary of the state of my working changes. It helps because git diff alone will hide the staged ...
1
vote
1answer
61 views
unix shell: check file list in dir versus with list of files from a file
I am trying to write a sh script to check check that all files from list of files' extentions stored in a file are in a place in a particular dir. I am doing following:
file names looks like ...
3
votes
2answers
75 views
Bash script to run query on 28 cores
I am trying to have an outfile query run a single process per value in an array to speed up the process of exporting data from mysql, id like to run the script on multiple cores. My bash script is:
...
0
votes
2answers
73 views
recursion issue in shell script
function syncfile(){
echo "[ DONE $file ]"
return ;
}
function syncfolder(){
folder=$1
for foo in `ls -1 $folder`
do
...
0
votes
2answers
51 views
Use sed without the need to write on file
I'm looking for a way to bypass the read write on file.
Is it possible to directly use sed on results of a command?
#!/bin/sh is used, as I used NetBSD, sed -i is not working so I have to use sed -e ...
3
votes
2answers
64 views
How to read path from input file
I have a txt file that has the path to xml files.now i want to read the path from the text file and print the number of tabs present in each xml file.how to do this?
here is what i have done
txt ...
1
vote
3answers
58 views
How can I list the contents of zip file without decompressing it?
How can I get the equivalent of a ls of a .zip file (not gzip), without decompressing it, from the command shell?
1
vote
1answer
58 views
Understanding cp in shell script
cp ${skeleton_dir}/*.cfg ${skeleton_dir}/*.org ./
I don't understand what this means, but I have a guess based on the program behavior. It copies the .cfg files to the current directory, but what ...
1
vote
1answer
61 views
Ftp bunch of files from multiple directories into one directory
I have a command to print all the cpp files
find / -name *.cpp
I would like to ftp the result of all of these into my ftp directory /backup
How would I go about merging ftp command along with find ...
0
votes
0answers
83 views
PHP shell wrapper [closed]
I'm looking for a PHP class that makes the job of making PHP script wrapper for shell programs easier.
I've stumbled upon ShellWrap, but it returns the final result of the program instead of ...
0
votes
0answers
60 views
Embedding binary library into Android app
I'm coding apps that use busybox binary library stored in my project's assets folder. In runtime I copy this library to /data/data/com.myapp/ folder, I make this file executable and than try to ...
0
votes
2answers
40 views
storing () in a variable of unix shell script
Any idea how to store the speacial characters open and close braces ( ) in a variable that is used in the unix shell script
-2
votes
1answer
145 views
how to solve a Not a Directory error message in UNIX [closed]
I have created a driectory with the following command
/usr/bin/mkdir -p "${exa}/isrvce-backup";
exa ---> /sample/example
and I see isrvce-backup is created, when I tried to access that folder, I ...
1
vote
2answers
39 views
How can I modify zsh to autocomplete `source` with the local directory before the $PATH?
I can't count the number of times I've typed: source en<tab> only to be left with a bunch of garbled text on the screen because it sourced the program env instead of the local env.sh.
I tried ...
2
votes
3answers
57 views
sourcing env output
I have some shell code I need to be debug, so I had the code dump its environment into a file
env > env.txt
and with my testing script I want to source it, test.sh:
. ./env.txt
echo $EXAMPLE
...
0
votes
2answers
67 views
Echo before the output of the awk command
I need to know how to add this line before each output of the awk commands. I also need to add how much disk space has been used by the user in their home directory. I have no idea how to combine them ...
-1
votes
2answers
70 views
Shell: How to create the directory with slash and parentheses? [closed]
I'd like to create the directory "Dir (A/B)" in "test" folder in one go with the following command:
$ mkdir -vp "test/dir (A/B)"
test
test/dir (A
test/dir (A/B)
Unfortunately it's creating 'dir (A' ...
1
vote
0answers
112 views
Mimic rsync command behaviour in shell script
I'm attempting to write my first short backup script. I'm using "plain" sh. When I issue the following command on the command line:
rsync /home/username/.* /home/username/backups
everything works ...
0
votes
3answers
224 views
How do I start an executable jar from within a .sh script?
I have an executable jar file that I would like to start from a *.sh script on Ubuntu Linux.
Currently the myapp.sh file looks like this (error: "nothing happens") :
java -jar myapp.jar --start
I ...
2
votes
2answers
113 views
Command giving no output when being read?
I have a rather weird issue. I can't figure out why it's happening or how to fix it.
The script:
#!system/bin/sh
#set -x
reader() {
t2=-1
grep -v -E "add device|name:" | while IFS=' ' read ...
1
vote
2answers
154 views
Add spaces to variable in shell script
I want create a yaml configuration file from a sh script. So I need to add multiple spaces to a variable like that:
SERVERS=""
for i in $(seq 1 5); do
SERVERS="$SERVERS -server`printf "%03d" ...
1
vote
1answer
51 views
Splitting a string to tokens according to shell parameter rules without eval
I have a string like
$ str="abc 'e f g' hij"
and i wish to get whole e f g part of it. In other words, i wish to tokenize the string according to shell parameter rules.
Currently, i am doing that ...
0
votes
2answers
59 views
creating php cli processes running in background
I am looking to run 10 php CLI processes (parallel) using one shell script. but, I am trying to find out how to send a process to background once created.
something like this I am trying. any help ...
0
votes
1answer
39 views
How do I know whether bash kill will use a pid or a jobspec?
From the fine manual page:
kill [-s sigspec | -n signum | -sigspec] [pid | jobspec] ...
kill -l [sigspec | exit_status]
Send the signal named by sigspec or signum to the processes named by ...
1
vote
2answers
244 views
Running FFMPEG from Shell Script /bin/sh
I am trying to setup a Shell Script to work within an automator watch folder...
Everything works with the exception of the Run Shell Scrip portion...
Essentially when a file shows up in the watch ...
0
votes
1answer
435 views
shell script comparing two variables
I have created a script for updating some ipaddress in iptables. Hereby I'm describing the issues which I'm facing with that.
Issues:
Comparison not happening between two variables within a script
...
0
votes
1answer
85 views
linux sort doesn't work for me
I have a sort command like the following,
sort -t $'\t' -k2,2nr
And a snippet of result is like
apple rind 9.983498736703696E-5 9.821524318539816E-5 1.6197441816387907E-6
barren apple ...
1
vote
4answers
140 views
use conditional in bash script to check string argument
I am trying to write my shell script thing.sh so that upon making it an executable and running it with the single letter ``A" like so:
$ ./thing.sh A
I get the output
A
If argument 1 is not ...
2
votes
2answers
107 views
Shell script to set screen resolution values in a file
I want a shell script that
grabs my current screen resolution, (solved)
searches a file for the line containing the resolution setting,
replaces the old resolution setting in the file with the ...
-1
votes
4answers
85 views
string split output does not stored into separate variable
#/bin/sh
INPUT_ETH="eth0,eth1,eth2,eth3"
i=0
for eth in $(echo $INPUT_ETH | tr "," "\n")
do
eth_$i=$eth
echo "$eth_$i"
i=`expr $i + 1`
if [ $eth_$i = $BLA_BLA]
then;
..............
...





