The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
-1
votes
1answer
16 views
How to make Korn Shell to go to new line
how can I make the ksh to go to new line when I'm typing in the terminal and it goes to the end of the current line?
0
votes
2answers
17 views
Korn Shell .kshrc
I'm trying to make the UP arrow to get previous command in Korn Shell but I can't find .kshrc file in my $HOME directory. I know it is hidden but even ls -al doesn't show it. What should I do?
0
votes
1answer
23 views
Korn Shell Implementation from a pseudo-code
I'm trying to implement the extended euclidian algorithm whose pseudo code has been given below in korn shell. I'm having problems with the lines with ":=". I don't know what those mean and I'm also ...
0
votes
1answer
10 views
Use `pbcopy` as path for cd command
I am using Automator on my Mac to set up a service that passes a selected folder to a bash shell script as arguments.
In the script I do:
for f in "$@"; do
printf "%q\n" "$f" | pbcopy
done
if I ...
0
votes
2answers
21 views
Shell Scripting: Quotes Around Variable with \$
I've just started learning about shell scripting and have been trying to workout what's going on in this script: http://dev.cloudtrax.com/wiki/ng-cs-ip-logging
Specifically, I can't wrap my head ...
0
votes
1answer
17 views
How do I get the unix terminal to say how many files are left to run, and which file it is working on?
I have a shell script that is sending in about 150 files to a python program I wrote.
I have no idea how long it is going to take, so I was wondering if there was a terminal command to either:
a) ...
0
votes
0answers
21 views
SVN Help, messed up my svn directory [migrated]
I was working in a copy of my directory in another server. When I moved it to the one with SVN, where I am supposed to work, it overwrote the original directory. The files that were supposed to have ...
1
vote
2answers
21 views
Passing variables between two serves
I am taking input from user for a shell script, and want to run this script on different servers. I tried to pass the variables as follows:
USERNAME=****
HOSTS="**** ***** *****"
...
0
votes
1answer
31 views
Use JQuery to make a call and bring back multiple status
I'm wondering if this is possible. I'm using jQuery to run a Java servlet that runs a shell script. The script takes about 2 minute to run and echos a message every 30 seconds. I want to return each ...
0
votes
0answers
9 views
Reading from a mtd partition vs local variable in script
In an embedded system, as part of startup shell script, u-boot environment variables are read again and again to fetch different variables.(around 15 variables).
fw_printenv is the executable used as ...
0
votes
0answers
33 views
Windows Powershell - Simplest way to run a bunch of commands and save output
In Windows Powershell, I want to make a script that runs a bunch of commands in succession.
Like so:
mongo a.js > aout.txt
mongo b.js > bout.txt
...
I'm using PowerShell to get access to ...
2
votes
3answers
34 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 ...
1
vote
1answer
24 views
Setting variable to last arg from command line parameters
I'm trying to write a script in a way that makes it simple to add future command line args. I'm using getopts and that works well. However, I'm running into issues with the case statement.
...
0
votes
2answers
16 views
How to cleanup an SVN checkout with lots of locks in externals
At the moment svn cleanup doesn't go into externals according to this bug. What's the best way to remove all the checkout locks from a project and all it's externals?
0
votes
1answer
22 views
How can i write a shell script to display the below output? 1
In shell script a command output gives integer number like :
xxx$> xxxx
10
20
30
I want to add those integer values and get sum value. What is the simplest way to do..?
0
votes
0answers
34 views
How to make 2 applications run each other in linux?
The situation is as follows:
We have a main application and a watcher application.
Both of them are c++ applications. Both of them use daemon(1,0) function.
Watcher checks if main application is ...
2
votes
2answers
36 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"
...
2
votes
1answer
39 views
parsing xml file in unix
I've got this xml file:
<?xml version="1.0"?>
<RunInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="2">
<Run ...
0
votes
2answers
69 views
Mongo is letting me down
I've been trying to run mongo on my system, but I just doesn't want to start. I've installed mongodb with brew. Both mongo and mongod are on my system and I can use them. But the mongod process won't ...
1
vote
1answer
19 views
Shell Script: 2 terminals opened, and automatically close the first
I want to know how to modify the following Shell Script to achieve what I want.
The script is used in MacVim. To explain its purpose, suppose you open a .tex file in gVim. If you run the script ...
0
votes
2answers
21 views
how to fgrep/egrep exact string in a file
I'm trying to search for an EXACT string match in a file. I know it can be done via "grep -w" but for some reason, i dont to do it with grep.
Already tried these and didnt work for me:
egrep '\< ...
-3
votes
1answer
22 views
Why do we have max. 256 colors in terminal emulators? [closed]
I was just fiddling around with a 256 color VIM theme and noticed that 256 colors are just not enough sometimes. I would love a terminal that supports at least the HTML color range from #000000 to ...
3
votes
2answers
41 views
perl Getopt::Long::GetOptions usage
I am new to perl and wanted to use Getopt::Long::GetOptions for getting command line options to the script.
I have requirement like this :-
1.) perl script.pl -c <name1> -c <name2> -m ...
0
votes
1answer
14 views
HashMap in shell script with File path
I am trying to declare a hash map in shell script containing a file path as key and some variable as value.
Something like this
fileVarMap=( ["Dir1/file1.txt"]="myVar1" ["Dir2/file2.txt"]="myVar2" )
...
3
votes
4answers
65 views
Need to match a pattern occurence only once in a file
I have multiple files with some pattern
ABCD 100
ABCD 200
EFGH 500
IJKL 50
EFGH 700
ABCD 800
IJKL 100
I want match the occurence of each (ABCD/EFGH/IJKL) only once sorted based ...
1
vote
2answers
25 views
Shell: Find a keyword in a file and get the content of the following lines
I would like to write a shell script which can find a specific word and get the contents of the following lines.
For example I have a file:
...[not interested info]...
Keyword: YES
wanted line 1
...
0
votes
2answers
24 views
Rename a file in a directory without retyping the directory name
Say we have a file test.txt in my_directory that I want to rename to yeah.txt.
Is there a way with zsh (or even just bash, just to know) to avoid retyping my_directory?
I find the following a bit ...
1
vote
1answer
25 views
Pasting long lines into Mac OS X Terminal
When I paste a long string (ie, more characters than the width of the terminal window), the terminal doesn't autoscroll and put them in multiple lines.
Instead, it basically wraps onto the same ...
2
votes
2answers
46 views
Exact grep -f command in Linux
I have 2 txt files in Linux.
A.txt contents (each line will contain a number):
1
2
3
B.txt contents (each line will contain a number):
1
2
3
10
20
30
grep -f A.txt B.txt results below:
1
2
3
...
-1
votes
3answers
43 views
sum of column in text file using shell script
I have file like this
1814 1
2076 2
2076 1
3958 1
2076 2
2498 3
2858 2
2858 1
1818 2
1814 1
2423 1
3588 12
2026 2
2076 1
1814 1
3576 1
2005 2
1814 1
2107 1
2810 1
I would like to generate report ...
0
votes
1answer
26 views
Android shell script read
I'm trying to get a shell script to take values. What I currently have is:
#!/system/bin/sh
echo "Enter the page numbers"
read page_no_first;
read page_no_final;
#
echo $page_no_first
echo ...
0
votes
2answers
26 views
using a shell script how do I find a word in a document that has a specified number of characters?
I have a word in a document that is 10 characters long and I wish to first find it then replace it with a 5 character word. What would be the most efficient way to do this with a shell script?
0
votes
1answer
33 views
How compare two paired list in bash?
I'm trying to compare a remote md5sum result from some files into a server, with my local md5sum files and those that match, the hash and the filename should be removed from the local server.
The ...
5
votes
2answers
58 views
How to find files differing only by extension [closed]
Suppose I have multiple random .txt files, and in the same directory I have nearly-identically-named files like filename.sql and filename.txt. How would I find those .sql and their counterpart .txt ...
1
vote
1answer
31 views
pipe or send strings with socat/netcat with a pause
i capture unbuffered codes from ttyUSB0 as an string though hexdump'ing
/usr/bin/stdbuf -o0 /bin/busybox hexdump -v -e '12/1 "%02x" "\n"' /dev/ttyUSB0
with example-output like this (without ...
2
votes
3answers
38 views
why echo strings in bash reading from stdin doesn't show space characters
Here is my code
michal@argon:~$ cat test.txt
1
2
3
4
5
michal@argon:~$ cat test.txt | while read line;do echo $line;done > new.txt
michal@argon:~$ cat new.txt
1
2
3
4
5
I ...
-1
votes
0answers
23 views
Close a specific Chrome tab in Ubuntu/Linux using terminal command [migrated]
Is there a way to close a specific Chrome tab with a terminal command? I tried below commands:
kill -9 <pid of Chrome tab>: Instead of closing a tab, it kills the tab ("He's dead Jim" message ...
0
votes
0answers
22 views
Using Expect in a script, how do I get the script to skip an entry line in a source file?
Here is the script.
#! expect
set timeout 60
proc dostuff { currenthost} {
send "en\r"
expect "Password:"
send "XXXXXXX\r"
expect "#"
send -- "conf t\r"
expect -- "#"
send -- "enable aaa console\r"
...
1
vote
1answer
45 views
How to send nic mac address information using javascript, php, bash in linux box?
i'm trying to identify client Linux PC (our branch) to allow acces to our PHP application at main office. i want to get the nic mac address (using php/bash) then hashing/crypt it, then send to php ...
1
vote
4answers
68 views
Trying to understand an easier way with RegEx
To give you an idea, I'm trying to accomplish grabbing any string with this information.
IP Address for: John Doe on 05/20/13
I basically need to find all strings in that format..
I am using date ...
2
votes
2answers
53 views
bash, command not found
i'm having trouble fixing the error in this bash script, I seriously have no idea what I did wrong, any help is appreciated thanks
[centoslive@livecd ~]$ sh ListFich.sh test
Synthese, Question 2
...
2
votes
3answers
50 views
Linux: stream rotating log files into one file
I would like to gather all logs entries, that are written into log files with rotation:
log_2013_05_10.txt
log_2013_05_11.txt
log_2013_05_12.txt
...
...into one file. The goal is, ...
0
votes
3answers
28 views
How to detect running app using ADB command
I have one Android Device running Jelly Bean OS.
Is there any way to detect the process is running or not using ADB command if i know the package name?
0
votes
0answers
12 views
Embedded shell script with RCP app
I have an RCP application packaged by a PDE build.
Also in this application in one of the plugins I have a directory called "scripts" with shell scripts that I want to run.
Everything works ok if I ...
1
vote
2answers
39 views
foreach loop through associative array in bash only returns last element
This should print the whole associative array to the console:
#!/bin/sh
declare -a array=([key1]='value1' [key2]='value2')
for key in ${!array[@]}; do
echo "Key = $key"
echo "Value = ...
0
votes
0answers
27 views
No output when running jar from shell script
I am running a jar-file in a shell script calling hierarchy. I want to redirect the output from executing the jar file to my logfile "loga.log" but this does only work when I run this script with ...
0
votes
0answers
21 views
adb shell - installing or moving apk from /data to /mnt/sdcard
I'm working on a script via shell for the installation of one or more apk from an USB key plugged in the device. The device is a MID custom, made in China, with root permissions. Android 4.x on-board.
...
0
votes
2answers
35 views
Run adb shell command using android code
echo 0 > /sys/class/leds/button-backlight/brightness
The above command is working perfectly through adb shell.But when I try to run through my code there is no effect.Here is my code.
Process ...
1
vote
3answers
28 views
Build a sed script from specific environment variables
I need to have a very basic template system in shell to port a windows installer to linux. So I can not change the syntax of the template variables.
I want to take specific environment variables ...
2
votes
8answers
89 views
Unix command to convert multiple line data in a single line along with delimiter
Here is the actual file data:
abc
def
ghi
jkl
mno
And the required output should be in this format:
'abc','def','ghi','jkl','mno'
The command what I used to do this gives output as:
...





