1
vote
3answers
56 views

how to remove unnecessary chars from date command output in python

I am new to python. Forgive me if it's too simple. I want to extract only date using date command in python import subprocess p = subprocess.Popen(["date", '+%m/%d/%y'], stdout=subprocess.PIPE) ...
0
votes
0answers
30 views

Running Applescript from Excel 2011 VBA

Mac OS X, Excel 2011 VBA Question: I am trying to run a bash shell from an Excel 2011 macro. The command executes properly from the Mac OS X Lion 10.7.5 terminal. It also executes correctly using ...
0
votes
1answer
22 views

Prevent a command in a shellscript from being executed inside another shellscript

I am invoking a shellscript inside another shellscript, and the invoked one has a command to delete a folder, which I don't want to be executed, like this $ rm ../temp -rf Is there a way to prevent ...
0
votes
1answer
82 views

CakePHP, Shell, PHP

I have an app in which I have a few cron jobs (these are outside cake), what I would like to do is the save cache using (Cakephp Cache Helper) by triggering through cakephp shell and create pdfs after ...
0
votes
1answer
25 views

Generate diff report of pair of files

I have thousands of flat files in two directories dir1 and dir2. Now, I want to generate diff report of the pair of same file names in two other different directories success (if diff is exactly same) ...
0
votes
4answers
46 views

Create files from text list using command line?

I know that normally you can just use touch filename to create new files via command line. But, in the text file I have a list of about 500 cities and states, each on a new line. I need to use ...
1
vote
1answer
18 views

Unable to click on links in FireCMD shell

I am using echohtml command in FireCMD shell as follows: echohtml <a href="http://www.google.com">Google</a> This prints a link but when I hover the link the cursor does not change to ...
-2
votes
0answers
22 views

Converting JPG files to WMV files with command line? [closed]

Does anyone know of a way to massively convert about 400 JPG files into WMV files? Each of the WMV files just needs to show the image and be between 30-60 seconds long. Thanks!
0
votes
1answer
59 views

How to use Jenkins shell command to copy files but excluding some directories [duplicate]

In a Jenkins job, I have a build step executing shell commands like this: rm -rf /var/www/www.example.com/* find . \( -not -path '*/.svn/*' \) -exec cp -rv {} /var/www/www.example.com \; However ...
1
vote
1answer
78 views

Run Shell command in Perl

I can run some Shell Linux commands in Perl (for example create a folder). But I can't execute followed command: echo 'mypassword' | gpg --passphrase-fd 0 --output outfile --decrypt inputfile I add ...
0
votes
1answer
94 views

Command Prompt Directory Styling

I have a particular need for adjusting the command prompt. At the moment i am using Holmans Dotfiles and I want to further customize it in order to create a prompt that's more readable and clear. What ...
2
votes
2answers
43 views

save terminal command to file that runs command in terminal when opened

I have a series of commands that I run in terminal and I am wondering how I can store those commands in a file and of what file type so that on open of that file, in terminal, the commands run? But ...
-2
votes
1answer
61 views

a bash script to change postgresql user password [closed]

I can change the postgresql user password in this way (2 steps): $ su - postgres -c 'psql -U postgres -d postgres' # Alter user postgres with password 'password'; Now I want to use a single line ...
1
vote
2answers
85 views

How to remove from file specific content from another file?

I have a file foo.txt: $cat foo.txt <ul> <li> <p>something</p> </li> <li> <p>something else</p> </li> </ul> And a bar.txt: $cat bar.txt ...
0
votes
2answers
36 views

Removing duplicate emails through command line?

I have two lists of emails in text files: emails.txt - people who are subscribed to my newsletter blacklist.txt - people who have unsubscribed I'm in the process of changing newsletter softwares ...
7
votes
1answer
46 views

Please explain: trap 'sudo kill -9 — -$$' EXIT

What is this shell command doing? trap 'sudo kill -9 -- -$$' EXIT
0
votes
1answer
59 views

Drop_caches by app doesn't work

I've made this script but doesn't work: package com.mkyong.android; import android.annotation.SuppressLint; import android.app.Activity; import android.os.Bundle; import android.util.Log; import ...
0
votes
2answers
121 views

How to run rename shell command in android app (rooted)

I'm new to Android. I'm trying to run a shell command to rename a file in the system. I've got root access to it. The shell command: $ su # mount -o remount,rw /system # mv system/file.old ...
0
votes
0answers
101 views

PHP shell exec ssh [closed]

In my old server (debian), I can run ssh like this in php: try { $db = new PDO("mysql:host=$host;port=$portOMS;dbname=$dbnameOMS", $sqlUserOMS, $sqlPassOMS); } catch (Exception $e) { ...
0
votes
2answers
110 views

Teradata client on Unix Solaris

I deploy some .bteq and .sql scripts on a TERADATA database. For doing this, I use a client on my desktop called BTEQWin version 13.10.0.03. I get the .bteq/.sql from a version control like pvcs/svn ...
0
votes
1answer
59 views

c# execute shell command and get result [duplicate]

I am executing a command prompt command as follows: string cmd = "/c dir" ; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "cmd.exe" ...
0
votes
1answer
88 views

How do I move all arguments entered in a shell script to a folder?

I am trying to move all the arguments that are given when the script is run, to a RecycleBin directory. I am setting RecycleBin to be a directory in my home folder using RecycleBin="$HOME/Recycled". ...
0
votes
3answers
64 views

Adding a column with awk

I want to add a new column at the beggining of every row. Command used: tree -afispugD --inodes I want to put a new column which will be the name of the file. Example: 119801433 -rwxr--r-- ...
0
votes
0answers
94 views

Issue running unoconv from php script with shell_exec

I am unable to use unoconv to convert a .doc to PDF from php using exec. Here is what I am trying: $output = exec("unoconv /opt/bitnami/apache2/htdocs/=".$fileData['name']); ...
2
votes
4answers
31 views

Get command used to start a script

How to get the command previously used to start a shell script? for example: nohup /script_name.sh & Inside the script itself, how to check if "nohup" has been used? Thanks.
1
vote
2answers
110 views

run multiple shell commands one by one in c#

I want to run multiple shell commands from c#. I've tried Process.Start(""); but it opens new instances for each command. I've also tried ProcessStartInfo with StreamWriter (ref.) but it doesn't work ...
0
votes
2answers
51 views

Use sed without the need to write on file

I'm looking for a way to bypass the read write on file. Is it possible to directly use sed on results of a command? #!/bin/sh is used, as I used NetBSD, sed -i is not working so I have to use sed -e ...
0
votes
1answer
38 views

Multi threading in command line possible?

I'm using the following command to check the whois information from a list of domains in a text file and then output any lines that contain an email to a new file: for i in $(cat testdomains.txt); do ...
0
votes
1answer
41 views

Get output of shell command in ObjC

I've read solutions for doing this using NSTask: they all look very very long... So I managed to do the exact same thing using this code (which gets both standard output and standard error): NSTask ...
0
votes
3answers
132 views

run system command in java script without activexobject

I want to run a system command thru a web application on client side. so How can I execute a command in javascript to make this work? Tried using ActiveXObject but its not working, plus it only ...
1
vote
1answer
114 views

How to run SVN export without the prompt of username and password

Is it possible for me to do an SVN export without being prompt for the user and pass? I give my username and pass, in the command: svn export --username bavhbavh --password blahblah ...
0
votes
5answers
84 views

perl embed data like in c shell

Is there a way to embed data into a perl script and use/read it later as a temp file in a similar way to c-shell. cat<< eof>tmp.txt store a multiline text file eof run_some_function on ...
0
votes
2answers
355 views

-bash: __git_ps1: command not found

I tried to install Ruby 2.0. My command line urped and now looks like the following: -bash: __git_ps1: command not found [11:58:28][whatever@whatever ~]$ I have not a clue how to get rid of the ...
-6
votes
2answers
116 views

Create linux environment in C using execl and fork() [closed]

I have created a program that acts like a Linux environment. You put in a command and it does it for you. #include <stdio.h> #include <string.h> int main() { int pid; int status; ...
1
vote
1answer
34 views

How to create output file using command line?

I'm using this command to remove all duplicate lines: sort file.txt | uniq -u But it just displays all the unique lines in terminal. What do I need to change to make it create a new file named ...
0
votes
4answers
74 views

Command Line Find & Replace

I'm trying to replace </url></loc> with </loc></url> in all my files but nothing seems to be working. Is there a way to do this via command line, perl, etc.? Any help ...
0
votes
2answers
46 views

how can I get only last modified date

how can I get ONLY the filename and its last modified date of the files contained into a folder (even subfolders) I want this kind of result: path/filename lastmodified_date or filename ...
0
votes
1answer
49 views

Execute git command in hook post-commit

I have a post-commit hook. I would like to count the commit number every time I commit on my repo. I wrote : #!/bin/sh commit_number=$(git shortlog | grep -E '^[ ]+\w+' | wc -l) echo "$commit_number" ...
0
votes
2answers
74 views

How to extract emails with command line?

I'm using the following command to extract emails from a file: perl -ne'if(/[\w\.\-\_]+@([\w\-\_]+\.)+[A-Za-z]{2,4}/g){print "$&\n"}' database.sql What do I need to change to make this print ...
0
votes
2answers
47 views

How to split a file using a numeric suffix

I'm using the following command to split a file. It should split every 50,000 lines and use a 4-digit numeric suffix. The file is about 140 million lines. split -d -l -n 4 50000 domains.xml ...
0
votes
2answers
46 views

Add new lines to top and bottom of every text file

I have a folder that contains about 2000 text files in it. At the top of every file I need these two lines added: <?xml version="1.0" encoding="UTF-8"?> <urlset ...
0
votes
1answer
66 views

Add prefix and suffix to all lines in all files?

I have a huge list of text files in one of my folders - in each text file is a list of domain names. I need to add this before each line: <url><loc>http://www.mysite.com/review/ And ...
0
votes
1answer
58 views

Using command line to split files

This is what I'm currently using to split my files: split -l 500 myfile.txt file_ and it automatically creates file like file_aa, file_ab, and so on. Is there a way to use numbers instead of ...
0
votes
2answers
60 views

users command and find current active user not all logged in users

I know 'users' command will list all logged in users in alphabetic order. How can I get the name of user currently active?
1
vote
1answer
198 views

How to pass shell variable as a command line arguments in C program

I want to pass shell variable as command line arguments to C program. To practice this I have written a basic C program which is as follows: #include<stdio.h> #include<stdlib.h> int ...
-2
votes
4answers
74 views

Linux command with scape character

When I try to execute some command like this: ssh host_1 "cat test_file | sed 's/$/\tOK/'" I got this error: Illegal variable name. What is the problem?
1
vote
1answer
100 views

Linux Shell - Find Top k Number Of Processes

I am trying to figure out how to get the top k number of processes in a linux shell. Obviously the first thing that popped into my head is top, but it does not seem to have any parameter to specify ...
0
votes
3answers
79 views

What is the Unix command to display all lines of a file with two certain strings

Basically, I have a file that I want to search and display only the lines that have the strings 'abc' and 'vhg'. What is the Unix command for this?
0
votes
1answer
73 views

What's wrong with my remove cronjob php function?

I' trying to write a function that helps with deleting cron jobs , I've tried some classes from the net but it didn't work , so I'm writing it myself ,the problem that it's not removing command ...
1
vote
1answer
26 views

Invoking the preprocessor from a shell or shell-like program

As mentioned in the title I want to invoke the preprocessor from a shell. Let me clarify: Suppose I have to invoke Preprocessor for command patch in Linux say: patch -p1 -D `"{what and how should ...

1 2 3 4 5