The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.
0
votes
0answers
3 views
iOS and calling Terminal Commandos with IBAction
NSTask is available for MacOSX, only, right?
I want to create an iOS App with some UIButtons calling a terminal command.
Which framework should I use for a non jailbroken device ;-)
0
votes
2answers
15 views
Can I use Shell or Python realize calling a C programe and give all the parameter it requires?
I have met a problem and I have no knowledge that whether this can be realized in Shell like Bash or Python.
I need to run a C programe several times, the programe is "atompot" for TEM image ...
0
votes
3answers
20 views
script to compress user files via searching through folders for certain folder name
I'm writing a function for one of my programs that will need to search through a number of folders until we find a folder called "userfiles" then we tar up this folder giving the filename of the ...
0
votes
0answers
11 views
Compress to tar.gz on Grunt
This is driving me crazy, I'm just trying to compress a folder like:
tar -czvf app.tar.gz ./app/
an obviously it works just fine, but https://npmjs.org/package/grunt-shell produces a corrupted ...
2
votes
1answer
26 views
ln complains about no such file or directory
I'm new in shell programming on macosx and have a little problem. I've written the following shell script:
#!/bin/sh
function createlink {
source_file=$1
target_file="~/$source_file"
if [[ -f ...
-4
votes
0answers
33 views
Avoid input password or other things every time in linux
I need to excute a shell script and I want to avoid input password and others each time when I want to excute this script. How can I do? Expect? Whether are there other ways to avoid it?
I give an ...
-1
votes
3answers
43 views
How to search subdirectories for .c files and compile them (shell scripting)
I need to take an argument which is a directory of the current directory and search its folders and compile any C files in those folders. I'm just beginning shell scripting in Bash and am a little ...
-1
votes
1answer
38 views
Please help me, How to separated zero with point in my bash script?
My script
echo -n "number 1 : ";
read bil1
echo -n "number 2 :";
read bil2
jlh=$(echo $bil1 + $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0' -e 's/\.0*$//');
echo " Your result : $bil1 + $bil2 ...
1
vote
1answer
26 views
Sync MongoDB Via ssh
Unlike Mysql, I found it quite challenging trying to sync MongoDB files -
They can not be piped back, since they don't send the data to stdout
(If I understand correctly).
So, I'm trying to find ...
1
vote
1answer
43 views
Shell script wildcard expansion issue
Following is my shell script and I try to copy all the files in the current directory to another machine which I have permission to copy.
#!/usr/bin/expect -f
spawn scp -pr "*" ...
1
vote
3answers
39 views
Linux: how to get the second latest file in a folder
Found several posts like this one to tell how to find the latest file inside of a folder.
My question is one step forward, how to find the second latest file inside the same folder? The purpose is ...
0
votes
3answers
34 views
-bash ruby command not found
Every time I log into my VPS I must run source ~/.bashrc before I can run any rvm, ruby, or gem commands.
Why is this? Can't make it load by default?
ssh deployer@xxx
ruby -v
-bash: ruby: command ...
-1
votes
1answer
27 views
sqlldr not found when using SQL*Loader in a shell script [closed]
I would like to create shell script, AUTOLOAD that will, when ran, execute SQL*Loader with a set of instructions. All this is in my Linux environment.
SQL*loader will then import data to SQL ...
-5
votes
0answers
42 views
Shell Scripting Exercise [closed]
Do you have some sample shell script exercise problems that one use to learn Shell Scripting like a "Problem solving" approach. Right from simple to complex. I tried to google it but didn't find much ...
1
vote
2answers
23 views
Create files using grep and wildcards with input file
This should be a no-brainer, but apparently I have no brain today.
I have 50 20-gig logs that contain entries from multiple apps, one of which addes a transaction ID to its log lines. I have 42 ...
0
votes
0answers
4 views
JScript.NET Exec() StdOut hangs, StdErr 2>&1 and redirect to file tricks not working
Been doing hours of research on this and i'm thoroughly stuck, I'm looking to get the response from sending a command to cmd from JScript.net server-side on my website. Here's how far i've gotten... ...
0
votes
1answer
37 views
Comparing an existing file with the result of a heavy process using named pipes
I'm trying to figure out a way to compare an existing file with the result of a process (a heavy one, not to be repeated) and clobber the existing file with the result of that process without having ...
0
votes
1answer
12 views
How to execute using path on AIX
When I try to execute a command within a folder :
$ omniidl
omniidl: No files specified. Use 'omniidl -u' for usage.
But, when I try to execute it using the path:
$ ...
0
votes
0answers
24 views
Calling Cygwin from within R
I was trying to invoke Cygwin from within R with the following command:
shell("cd C:\\cygwin\\bin & bash --login -i testfile2.txt", intern = T)
Within Cygwin I tried to invoke another program ...
0
votes
0answers
27 views
PowerShell child script changes parent's environment
I have PS scripts that changes current working directory:
Set-Location (Join-Path (Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Definition)) -ChildPath src)
Unfortunately, it's ...
1
vote
5answers
37 views
need to parse between second underscore and first hyphen of the text using sed
I have an rpm file, e.g. abc_defg_hijd-3.29.0-2_el6_11h.txt.
I need to parse the words between the 2nd underscore _ and first hyphen - of the above text,
so the required output will be hijd.
I was ...
0
votes
1answer
39 views
Best way to determine if an SCP transfer fails
At the end of a script if successful it creates a file (files) and stores it into a destination directory; I'm then retrieving the file (files) via scp from a server back to my workstation. The user ...
4
votes
2answers
54 views
Find and execute mathematical expression from an xml attribute and replace the value
Below is an excerpt from some xml files that need processing:
<BirimAdi>Adet</BirimAdi>
<BirimCarpan>1</BirimCarpan>
<HavaleFiyati>0</HavaleFiyati>
...
0
votes
0answers
12 views
Code to Pull Bluecoat logs from via DNS Logs
I am writing (in either basy/perl/awk/C) some code to find Bluecoat logs from a certain computer name.
First step is querying DNS logs for ComputerName, that gives me a date assigned and IP address
...
0
votes
1answer
12 views
openssl: how to disable “writing RSA key” message in console
Is there any way to disable console message "writing RSA key"?
$ openssl rsa -pubout -outform DER -inform PEM -in /tmp/res/chrome.pem -out 1 > /dev/null
writing RSA key
$ openssl rsa -pubout ...
-1
votes
1answer
33 views
Extract txt file subset using command line
i'm a command line NB and i'm trying to lern basics to pars txt files. Is not an easy task because i connot find exaustive guides or manual to give me the basic.
Given so, i have a VERY LARGE txt ...
0
votes
0answers
32 views
In 2013 is there a live scripting plugin for Eclipse?
Over the years there have been a number of ventures to support scripting in Eclipse.
The most successful ones have provided a dedicated Editor plugin to compile & run code in scripting languages. ...
0
votes
3answers
18 views
Not able to force exit on Jenkins Build
I've been having a lot of trouble with this so here goes.
I have a Jenkins build that executes the following shell script:
#!/bin/sh -x
if [ 'grep -c "It misses" log' -gt 0 ];
then exit 1;
fi
I ...
0
votes
2answers
58 views
Unix shell - read array content in a for loop
this is my array:
orlist=""
orlist="T_TAB1 \n"
orlist=$orlist"T_TAB2 \n"
orlist=$orlist"T_TAB3 \n"
orlist=$orlist"T_TAB4 \n"
echo $orlist
arrIdx=0
OLD_IFS=$IFS;
IFS="\n"
for IndixList in ...
1
vote
1answer
28 views
Git Hook - pre commit - Issue - Not executing after exec
I am startign to have fun with Git. Today I am starting a jQuery plugin to populate HTML elements with JSON feed and its been built with CoffeeScript.
As a result I am needing to compile the output ...
1
vote
3answers
50 views
how to find and delete below line using shell script
Below line has printed in my all php project pages because of malicious attacks.Now think is how i can find and delete this lines using shell script
function_exists('date_default_timezone') ?
...
0
votes
0answers
13 views
SVN versioning and remote deployment of a folder structure
there is a project is kept in svn which primarily has some scripts which will invoke a data transformation tool
The current way of deployment to various environment is all manual.
Scripts are ...
0
votes
4answers
53 views
How to check if a sub string exists with the shell?
I have the following strings in bash
str1="any string"
str2="any"
I want to check if str2 string exist in str1
I can do it in this way:
c=`echo $str1 | grep $str2`
if [ $c != "" ]; then
...
...
0
votes
2answers
35 views
Replacing with sed wont work
I have a file called "washington", with capital spelled in 4 different
ways: Capital, capital, Capitol, capitol. Use the "sed" command
to replace all of them at once, with the correct spelling: ...
1
vote
3answers
27 views
How to create a file in remote server from local server? [closed]
can anyone tell me how can i store the names of a file that are in remote server to a file and then get the file that contains the name in local server?
there is a remote server where 5 files are ...
-2
votes
1answer
42 views
In shells, how to find a file in current directory with at least 2 characters but not contain cs by using echo
In shells, how to find a file in current directory whose name has at least 2 characters but not contain cs by using echo.
1
vote
1answer
52 views
How to pass array of values to shell script in command line and advice on loop
The goal is to get only the filenames from svn log based on the revision number. Every commit has a jira ticket number in the svn comment, so the svn revisions are got by looking for the jira ticket ...
0
votes
0answers
22 views
How to use NSTask to act like the expect command on Mac OSx
My goal is to interactively run a command line app from ObjectiveC. For example the git command line app.
running the command git clone https://myRepo.git will generally prompt user for username ...
1
vote
2answers
31 views
!start not being found on vim command line
Windows command line has this command start that executes the argument with the default program. This is not an executable so I cannot just set it to path. If so, is there a way for me to run it from ...
0
votes
1answer
28 views
How to maintain Bash output formatting in python REPL
I have a python script that creates a thin wrapper around the bash shell. It wraps bash calls via the subprocess module, takes the output, and does some work on it.
My output contains newlines "\n" ...
0
votes
1answer
270 views
SQLite3 upgrade on Mac
I used the following to upgrade SQLite 3 on 10.6.8. I now have version 3.6.12 installed in /usr/bin/ and version 3.7.14 installed in /usr/local/bin/. Was this the best way to install it?
mkdir ...
4
votes
4answers
4k views
Arrays, linked lists and other data structures in cmd.exe (batch) script
I was playing with cmd.exe, but in its help I didn't find any info, how to define arrays.
I have found, how to define simple variables:
set a = 10
echo %a%
But, I want to create arrays, linked ...
6
votes
1answer
6k views
Running Shell commands though java code on Android?
Took me a while but I came back to this project with greater understanding of how to code. Here's a working way to do this for future reference of whoever
Define the string
String[] commands = ...
26
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 ...
32
votes
4answers
8k views
Automatic exit from bash shell script on error
I've been writing some shell script and I would find it useful if there was the ability to halt the execution of said shell script if any of the commands failed. See below for an example:
#!/bin/bash ...
80
votes
10answers
27k views
Why do people write #!/usr/bin/env python on the first line of a Python script?
It seems to me like the files run the same without that line.
127
votes
7answers
74k views
Mac OS X Terminal Colors [closed]
I'm new to Mac having just got one after working with Ubuntu Linux for some time. Among the many things I'm trying to figure out is absence of colors in my the terminal window - like the ones that are ...
32
votes
6answers
4k views
How do I get bash completion to work with aliases?
Case in point:
I'm a on mac with bash v3.2.17, I'm using git installed via macports with the bash_completion variant.
When I type git checkout m<tab>. for example, I get it completed to ...
140
votes
11answers
127k views
How do I prompt for input in a Linux shell script?
I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
203
votes
19answers
145k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...


