0
votes
1answer
24 views
Excecute iwconfig from a java application
Is it possible to execute iwconfig (or any other shell based program) from a java application and then parse the output somehow?
If yes, how?
0
votes
7answers
51 views
changing to parent directory in unix
in general we use
cd .. for going to the parent directory
cd ../../ to go to the parents parent directory. and
cd ../../../../../ for 5th parent directory.
is there any simplified way of doing …
0
votes
4answers
44 views
Offset from GMT standard time
Does Unix store the offset of the machine from GMT internally?
like for eg:india standard time is GMT + 5:30.is this 5:30 stored some where?
i need this to use it in a script like below
if[[ off is …
0
votes
9answers
88 views
Grep and regular expression
I need some way to find words that contain any combination of characters and digits but exactly 4 digits only.
EXAMPLE:
a1a1a1a1 //OK
1234 // Not
a1a1a1a1a1 Not
1
vote
2answers
53 views
How to get $this->translate(’Content’) => Content in a Textfile
I am looking for a shell script which scans a direcotry and all its subdirectories for .php and .phtml files. Within these files, I am looking for $this->translate('') statements (also …
0
votes
1answer
30 views
Why is makefile shell result different than doing same in shell?
With a GNU makefile content of:
SVNVERSION_NUMBER := $(shell svnversion --version | perl -lne 'print $1 if /version (\d+.\d+.\d+)/')
$(error $(SVNVERSION_NUMBER))
I get a result of:
Makefile:3: …
0
votes
3answers
25 views
XArgs command on cygwin is mangling file paths
I'm trying to use xargs on a Cygwin Windows system to remove SVN files deleted locally.
I run the following command that generates the following output:
svn status | grep '^\!' | sed 's/! *//'
…
0
votes
11answers
77 views
Getting the last argument passed to a shell script
$1 is the first argument.
$@ is all of them.
How can I find the last argument passed to a shell script?
0
votes
3answers
15 views
Using apple’s Automator to pass filenames to a shell script.
I have an automator script that I'd like to run on a folder. I want the script to take each file in the folder and run my shell command on it. Automator is set to pass input to stdin, but I don't …
3
votes
4answers
60 views
Tie the life of a process to the shell that started it.
In a UNIX-y way, I'm trying to start a process, background it, and tie the lifetime of that process to my shell.
What I'm talking about isn't simply backgrounding the process, I want the process to …
1
vote
2answers
50 views
Remove slash from the end of a variable
hi folks,
the bash auto completion make a / at the end of a directory how i can strip this out?
Thanks for hints.
#!/bin/sh
target=$1
function backup(){
date=`date "+%y%m%d_%H%M%S"`
PWD=`pwd`
…
0
votes
2answers
42 views
Shell command to send file via bluetooth on Mac OS x
Hi,
is there any way to use a shell script under mac os x to send a file via bluetooth ?
thanks in advance
Nikko
PS: anyone having a solution under windows is welcome too ...
0
votes
1answer
44 views
How to set shell variables in subprocess.Popen (in a less ugly way…)
NOTE: This is not the same question as Python: Persistent shell variables in subprocess, as that question is actually about environment variables, not shell variables.
I'm trying to automate a basic …
0
votes
1answer
32 views
Get the result of a Shell Commands within C
Hi all!
I'm trying to find a function to call a system command (shell command) and get back its result in a C program.
I only found functions like system but these don't return the result of the …
2
votes
2answers
31 views
$$ in ksh shell
Please tell me the meaning of $$ in ksh shell? I guess it is associated with the process id but I want to know its exact meaning.
