sh, aka Bourne Shell, is the Unix Shell, the standard shell since v7 Unix. POSIX has standardized the shell, and portable shell scripts should conform to /bin/sh syntax.
1
vote
3answers
43 views
Get disk space and separate this with most used space but put in one list
Want to get disk space and separate this with most used space but put in one list
Example how get the used space:
df -P | grep -vE 'Filesystem' | awk '{ print $5 " " $6 }'
Output:
89% /
1% ...
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
1answer
26 views
Do command substitutions not affect the state of the shell?
This example that stores the current directory of the script in MYDIR echos the same directory before and after the variable assignment(even though cd was called) leading me to think that command ...
-3
votes
1answer
38 views
Bash - unzip: command not found [closed]
I am trying to unzip the file in particular folder and i am getting a "unzip command not found" error.
I am using Cygdrive to run my bash script
#!/bin/bash
for dir in ./"$WORKING"/*
do
unzip ...
2
votes
1answer
36 views
copy all files in folder, into a folder within that same path
In Linux shell, How can I copy all files from /folder into /folder/sub?
the normal way of copying recursively isn't working (which makes sense) because i'm copying a folder into itself...
0
votes
0answers
61 views
Android : Read-only file system.
I'm using a terminal emulator on Anrdroid 4.1.1 device.
When I run cat > sample, it says: Can't create sample: Read-only file system.
I don't want to root my device.
Any workarounds?
2
votes
2answers
51 views
Running gvim from MSYS — how to avoid/change MSYS enviroment variables?
When I run gvim from MSYS, things go wrong during initialization. Namely, gvim can't find the initialization files that are in 'C:\Documents and Settings\username\vimfiles.
[Specifically, gvim ...
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
2answers
28 views
Extracting contents from string in unix
When I run,
ps aux | grep dexter | grep ruby | grep -v grep
This is what I get,
dexter 3285 0.0 0.0 31652 5356 ? S 00:01 0:01 ruby /home/dexter/script.ruby
I have the whole output in a ...
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
...
2
votes
1answer
30 views
difference between sh and bash when symlink is used
I have a shell script which uses process substitution
The script is:
#!/bin/bash
while read line
do
echo "$line"
done < <( grep "^abcd$" file.txt )
When I run the script using sh ...
0
votes
1answer
26 views
Handling spaces in a directory in bash sh
I have this line cp $(find "$directory" -type f | grep -iE '\.(c|cc|cpp|cxx)$') ~/src which searches a given directory (in this case, $directory is /home) and copies all file with the extensions of ...
0
votes
1answer
42 views
Bash shell: How to check for specific date format?
I have a Bash shell script which checks to see if a shell variable contains a number:
if ! [[ "$step" =~ ^[0-9]+$ ]]
then
exec >&2; echo "error: $step is Not a step number.";
...
0
votes
0answers
30 views
VBA create a .sh file with execution chmod 777
I have an Excel macro to create a text file with an .sh extension. The problem is when I send this file to a Unix server, I have to use chmod 77 to give execution access to all the users. Is there a ...
2
votes
3answers
37 views
Tail script to write out contents of a file from the end up to a matched pattern
I'm looking for a solution to a smple variant to this tail question...hoping someone will know the solution. Basically I want to tail a file until a string/pattern is matched and then write the ...
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
46 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 ...
-1
votes
0answers
21 views
Error while running my run.sh
I need help getting this fixed. The last couple days I have been trying to get this run.sh to work so I can run my Runescape Private Server. I've been narrowed down to one error now!!
If some one ...
0
votes
1answer
45 views
sh regular expression with case statement
I tried to check my variable value with case statement and regular expression in sh script like the following code:
#!/bin/sh
test="test.1.testing"
case $test in
test.[5-9]+.testing) echo "value ...
0
votes
1answer
43 views
Error while running my run.sh (linux)
I recently encountered this error while running my run.sh. I am trying to run a Runescape Private Server on my linux VPS; this is a large error. Please assist me, I dont know what other details to ...
0
votes
0answers
46 views
Bat file converstion to .sh
I really need to get this converted and I have no idea what I am doing.
I appreciate any help!
@echo off
title Project Insanity
java -Xmx800m -cp ...
-1
votes
0answers
116 views
Ubuntu 13 cannot open programs using desktop shortcut to .sh file anymore [closed]
I am running PHP Storm on my ubuntu machine (installed in /opt/phpstorm/).
I have create a symlink to phpstorm.sh on my desktop and was using that fine for a while, but since upgrading to Ubuntu ...
0
votes
1answer
45 views
Redirecting STDOUT and STDERR in Shell script
I have a script that uses the exec command to redirect STDOUT and STDERR to a file. The script works fine under Solaris 9. I am testing it on Solaris 10 on VMware and it fails at the exec command.
...
0
votes
1answer
40 views
Linux Script run on Startup
I'm looking to build CyanogenMod ROMs for android, I've followed a tutorial to setup the build environment.
This is the tutorial I followed: ...
0
votes
0answers
20 views
Jenkins sourcing a config file during build shell step
I'm trying to set up a build in jenkins that reads a config file generated during a previous build (if it exists) as part of a shell build step. However, the variables I define in the config file ...
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 ...
-2
votes
0answers
34 views
Facing error while trying to run .sh files in cygwin in windows [closed]
I intend to run .sh file using cygwin in windows in am facing following error
**$ sh push-campus.sh
rsync: Failed to exec ssh: No such file or directory (2)
rsync error: error in IPC code (code 14) ...
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
30 views
/bin/sh equivalent of bash ${!var_*} expansion
bash expands !var_* to defined vars that match the wildcard ($var_1 $var_2 etc.), e.g.
var_1=''
var_2=''
for v in ${!var_*}; do echo $v; done
returns 'var_1' and 'var_2' strings
What would be the ...
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 - ...
0
votes
2answers
90 views
TERM environment variable not set
I have a file.sh with this, when run show : TERM environment variable not set.
smbmount //172.16.44.9/APPS/Interfas/HERRAM/sc5 /mnt/siscont5 -o
iocharset=utf8,username=backup,password=backup2011,r
...
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
81 views
Shell script to print one log entry for each match pattern
I am trying to have the output of a shell script display the last lines of a log file, that starts with specific strings.
So basically I have a log file that reads:
Tom
Steve
Tom 2
Steve 2
Anthony ...
0
votes
3answers
68 views
when running shell script with sudo, user path is not available
I'm writing a shell script to start a few processes for me. Because those processes need sudo access, I run my shell script with sudo. However, I don't have access to my path variables when I do that. ...
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
44 views
Encrypting Cocoa Resources with Custom Build Shell Script
I am encrypting some resources in my Cocoa app using the following script (Source):
DIRNAME=EncryptedResources
ENC_KEY="abcdefghijklmnopqrstuvwxyz123456"
INDIR=$PROJECT_DIR/$DIRNAME
...
0
votes
3answers
486 views
What this line means in oh-my-zsh?
In the oh-my-zsh's upgrade tool, I found this line(line 2):
current_path=${current_path/ /\\ }
What it did?
Additionally, this line works on mac, but on my ubuntu server it output a error says:
...
-1
votes
1answer
33 views
Packet jpeg optimization in linux
I have many JPEG images on my server and they added evry day. I need optimize this images.
To optimize it I have use next command
find . -iname "*.jpg" -exec jpegoptim -m85 --strip-all {} \;
But ...
1
vote
1answer
29 views
Bash string, passed to GDB
I'm trying to write a bash script to autorestart a application i have.
But sometimes i want to have the program run in GDB. Anyways this is not where the issue is.
If you watch this gist:
...
0
votes
1answer
12 views
bash vs sh cannot use unamed stream diff <(doSomething) <(doSomethingElse)
I want to compare two stream. I wrote the following code in bash:
#!/bin/bash
diff <({
#premier commentaire
cat test_similar1
}) <({
#second commentaire
cat test_similar2
})
It worked. ...
3
votes
1answer
60 views
PostgreSQL - filter database list
I have this script (which backups databases daily):
#!/bin/bash
# Location to place backups.
backup_dir="/home/user/openerp/7.0/backup/"
#String to append to the name of the backup files
...
1
vote
1answer
86 views
Different pipeline behavior between sh and ksh
I have isolated the problem to the below code snippet..
Notice below that null string gets assigned to LATEST_FILE_NAME='' when the script is run using ksh; but the script assigns the value to ...
0
votes
2answers
47 views
Accepting multiple arguments through sh script [UNIX]
What I'm trying to do here is allow users to enter multiple arguments (filenames) and send them to a recycle bin I have created
the sh script is called "sh safe_rm"
so I would do this:
$] sh safe_rm ...
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
0answers
115 views
Download multiple files from an FTP server multiple times using SH script
I've been learning how to bash shell scripting, crontab automation and using various commands from the command line as part of a university course.
One of my tasks is to download three files (of ...
-2
votes
1answer
77 views
syntax error: unexpected end of file suse linux [closed]
hello i have made a script and im getting this error
syntax error: unexpected end of file can some one help me here is my code it is just getting very frustrating if anyone can help me then i give ...





