shell

How create a new launcher with bash shell ?

I want create a new launcher in the Application -> Game menu with bash shell. How can I do that ? ...

Access shell environment variables Java

Does anyone know how to access the environment variables of the standard shell environment in Java? I am using the ProcessBuilder class and I have to specify specific environment variables used in a shell script I am running, these variables exist in the standard shell environment. Accessing ProcessBuilder environment does not work. ...

Logical Error in Shell script.Please help (UNIX)

Following is a source code which takes in only 'files',lists the file permissions of a file and prints the output by replacing r=READ,w-WRITE,x-EXECUTABLE. It should also echo "User".But the My problem here is that I have replaced '-' by User but then if the file has a permission of r--x,it also prints "User" @ that point.I know its n...

How do these stream redirections work?

From this perldoc page, To capture a command's STDERR and STDOUT together: $output = `cmd 2> To capture a command's STDOUT but discard its STDERR: $output = `cmd 2>/dev/null`; To capture a command's STDERR but discard its STDOUT (ordering is important here): $output = `cmd 2> To exchange a command's STDOUT and STDERR in order to ...

Difficulty executing shell script with directory reference

Hey Guys, I have a simple script ... dir=`pwd` echo $dir cd ./selenium-grid-1.0.8/ CMD="ant -Dport=$1 -Dhost=$2 -DhubURL=http://172.16.1.137:4444 -Denvironment="$3"-DseleniumArgs="-firefoxProfileTemplate C:/software/rc_user_ffprofile -multiWindow" launch-remote-control" echo $CMD $CMD 2>&1 #End Whenever i run this command, i get: ...

Ensuring user input code does not damage server when executed

I'm working on a web app that can allow the user to input some code, and it will be compiled and executed, and they can see the result. I'm coding the app in PHP and I need a way to ensure that if the user inputs some harmful code (this example is PHP), it can't execute and destroy my server. Example: <?php shell_exec('rm -rf /'); ?> ...

AWK/BASH: How to remove duplicate rows from file with known field range?

Hi all, I was wondering if there was a way to use bash/awk to remove duplicate rows based on a known field range. For example: Easy Going USA:22 May 1926 Easy Going Gordon USA:6 August 1925 Easy Life USA:20 May 1944 Easy Listening USA:14 January 2002 Easy Listening ...

Failing if diff is found (c-shell)

Please resist the urge to tell me not to use c-shell. I'm writing a c-shell script and I need to run a diff between two files (generated in the script). How do I run diff and return its status (if it fails, return 1, else 0)? ...

Making Property Handler for my application to add custom properties to a file format

i dont know what i am doing wrong, using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Runtime.InteropServices.ComTypes; using Microsoft.Win32; namespace TestShell { [ComImport] [InterfaceType(ComInterfac...

How to traceroute in adb shell?

Hi, I have a rooted device, I type "su" in adb shell, then I try to traceroute. It says "traceroute: not found". I can't find traceroute in any bin folders. Thanks for any hints. ...

Creating RobotLegs Module within a PureMVC Shell Application

I'm working on an existing modular project that was built in PureMVC. Instead of converting everything over to RobotLegs, I want to create a new module using RobotLegs and plug it into the pureMVC shell. Currently, when the module loads, I get the following flash error: ReferenceError: Error #1065: Variable IMediatorMap is not defined. ...

ZSH to auto-complete directories in command-line arguments?

I'm a new ZSH convert on OSX (git status in the prompt was my main driver to make the leap). Everything seems to be working swimmingly but I'm missing something from BASH.. In BASH I would start to run a CLI PHP script that's built around Symfony's CLI tools. Typically I would run the command like this: $> php doctrine --configuration...

Error in "Open in" option in Eclipse

Hello, my problem is: When I try to open a shell or explorer window in my Eclipse using the option "Open in" from the package explorer tab it shows a message "The chosen operation is not currently available". How can I fix this? I use Eclipse Galileo on WinXP. Sorry, I don't remember if this functionality comes from a plugin. Thanks i...

What is the best Linux comand line server monitoring tool

I have a desktop at my house that has a SSH shell running htop that i use to keep an eye on my remote server. Do you know of any other tools that run in a shell that give more of an overview of the general server? Which maybe monitors online users, mysql, email etc... ...

how to pass file as an argument to the script file

Hi Everyone, I have a shell script written in bash and this script should take file as an argument,can any one tell me how to write script for this any ideas on this are apprecited Thanks, ...

Starting screen from PHP to execute intensive Java application

Hello, I am wondering how to start a screen session from PHP, I have tried with shell_exec(), system() and passthru(), but no avail. I have gotten the screen session started for the execution time of the script, but after it has finished loading, it kills the screen session it just created. (By starting a screen session and executing '...

Ubuntu server: manually changed /etc/passwd shell for my user, now can't login

I attempted to change shell from bash to tcsh via editing /etc/passwd file directly. Yeah, dumb move. I guess I've learned my lesson. Now I can't SSH into the remote server. Any way to fix this? PS. I can still connect to MySQL server via SSH tunnel. Any way to use this? ...

shell script to parse log file

Hi, I am given a log file(see below), I need to make it to this format using bash script: title pdfspool date rip date bmpspool date CLAB date Sometitle12 10/09/23 00:56:40 10/9/23 0:56:46 10/9/23 0:56:50 10/9/23 1:01:13 log file !!Begin Source aserver:pdf_spool:the, Job 844b015e0043469e, Inst 844b015e0043469e T...

-o: command not found

I am trying to download file using curl, but I get the following error message. -o: command not found My command was curl http://lab.test.com/test/test/down.php?c=redsoul&amp;bbs_no=236513&amp;file_num=7061013&amp;filename=%EC%95%84%EC%9D%B4%EC%96%B8%EB%A7%A8%2003%ED%99%94%20%28ANIMAX%201280x720%20x264%20AAC%29.SMI&amp;size=25485 ...

C# Shell Extension

Is there an easier way of creating shell extensions in .NET than this? http://www.theserverside.net/tt/articles/showarticle.tss?id=ShellExtensions The article is dated 2004. ...