Tagged Questions
-2
votes
3answers
52 views
java.lang.NoSuchMethodError: Graph: method <init>()V not found
I'm getting a confusing error in eclipse but not on our main server from the command line linux account. All code is in the main src directory, in eclipse. Code compiles at command line but produces ...
2
votes
1answer
32 views
unix find and replace characters with strings for multiple characters
I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
1
vote
2answers
38 views
delete all files within a directory that are older than 1 day [duplicate]
I need to ensure that I have no old files left in my directory so what I think I do is
find . -type f -mtime +1 -delete
i got that from the find man page but then
find . -type f -mtime +1 -exec ...
0
votes
2answers
42 views
Why do some Linux programs specify long form and shorthand arguments? [closed]
Whenever I look through documentation and man-pages, I notice that most linux programs have 2 types of arguments, and this is a genuine interest I have in finding out...
One seems to be the full ...
0
votes
2answers
16 views
How to keep command permanent
I installed rails on my ubuntu machine, and if I want to use rails, I have to run:
source /home/stkim/.rvm/scripts/rvm
every single time. How do I make it so that I don't have to?
Thanks.
0
votes
2answers
20 views
How do I time execution duration of a program or script from the command line?
I'm learning C and would like to get a sense for just how much faster some of my C code is than its python equivalent.
I'm running Ubuntu 12.04
0
votes
1answer
32 views
execute linux command and store the output in php array
I am making a php website used for monitor a Linux server, so i used linux commands for memory usage like (free) & (cat /proc/meminfo),for Disk storage, network, users etc... i can execute Linux ...
-1
votes
2answers
57 views
Writing a Python script to execute with a console command
Research is at the bottom, read before -1'ing... Thanks.
I have to write a Python script that runs SQL queries. I made a main class and called SQLQuery. Each SQLQuery instance represents a query. The ...
-1
votes
0answers
30 views
How to convert from sql to odb? [closed]
I am looking for a command (in Linux system) to convert from sql (in cvs format) to odb. Please, if any one can point me on the right way... I'm trying to convert from mdb to odb, I have found on the ...
0
votes
0answers
28 views
How do I install 'z' file directory jumper on linux? [migrated]
I'm attempting to install this and running into issues. I am supposed to add a line to the ".bashrc" file? Where in the file? the bottom? the top? somewhere in the if statement? do I make it an alias?
...
0
votes
5answers
35 views
Linux Command line Help | extract specific parts from file
Suppose I have a log which has data in the format given below
Time number status
2013-5-10 19:18:43.430 123456 success
2013-5-10 19:28:13.430 134324 fail
2013-5-10 19:58:33.430 ...
0
votes
2answers
58 views
Linux watch command “no such file or directory”
In Linux I'm trying to monitor all subdirectories of the current directory and output their file counts. The command I currently have is:
watch 'for FILE in `find . -maxdepth 1 -mindepth 1 -type d | ...
1
vote
2answers
52 views
Is it possible to include command line options in the python shebang?
I have the canonical shebang at the top of my python scripts.
#!/usr/bin/env python
However, I still often want to export unbuffered output to a log file when I run my scripts, so I end up calling:
...
0
votes
2answers
55 views
awk - print only first line of duplicates and the line below it
I have a large database file that needs some manipulation. Essentially I need to avoid duplicate field one delimited by '|' for:
-- TITLE1 | TITLE2 |T3 |TITLE4|TITLE5
...
-2
votes
1answer
22 views
Extract Equations as Images From Latex Document [closed]
I need a tool that can take as input a latex document, and output images of the equations in any format. I have tried Latex2HTML and TeX2PNG, but the first screws up half the equations and the second ...
0
votes
2answers
77 views
How to solve this security puzzle in bash? [closed]
As part of practicing with linux tools I've been trying random "bash challenges" and am stuck with one. I'm in a restricted bash shell where I can't cd, and I can't run commands with forward slashes ...
0
votes
1answer
25 views
Linux/mysql writing mysql table output to a file AND keeping mysql formatting.
I am using a command like the one below in mysql. And when it displays the table data it is formatted in a very clean table with even spacing and | as column separators.
SELECT * FROM TABLE_NAME;
...
0
votes
2answers
44 views
How to access php.ini on linux server using command line [duplicate]
I need to make some changes to the php.ini file. Can anyone tell me how and where can i find php.ini file on linux based server using Command line?
-1
votes
2answers
67 views
What is in your .bashrc? [closed]
alias cd..='cd ..'
alias .='pwd'
alias ..='cd ..'
alias ...='cd ../..'
alias halt='sudo shutdown -h now'
alias reboot='sudo reboot'
alias update='sudo apt-get update'
alias upgrade='sudo ...
1
vote
2answers
55 views
How to display line numbers when comparing files with linux “comm” tool
I would like to diff two very large files (multi-GB), using linux command line tools, and see the line numbers of the differences. The order of the data matters.
I am running on a Linux machine and ...
1
vote
1answer
45 views
Find “string1” and delete between that and “string2”
I'm using command line and sed. I need a command to delete from multiple files recursively.
I have left comments such as:
<!--String 1 -->
Code to delete goes here
<!--String 2 -->
So ...
0
votes
2answers
92 views
Path, /usr/bin/ and /usr/local/bin/
I installed watchr on OS X (10.8.3) using gem install watchr. And it's installed in /usr/bin/watchr
$ which watchr
/usr/bin/watchr
However, when I tried to call it $ watchr -v, the system couldn't ...
-4
votes
2answers
80 views
Where is the source code for understanding linux commands? [closed]
I'd like to know where the source code for the commands are in the linux tree.
Some commands:
mkdir
ls
dir
chmod
etc
Right now I'd just like to read the code and understand it, I know there are ...
0
votes
1answer
58 views
Running shell commands using PHP script
I'm creating an app using CodeIgniter, but I'm unable to run Linux commands using my PHP script.
How do I run terminal commands?
I've tried shell_exec() and exec(), but both don't work while using ...
1
vote
2answers
80 views
replace strings in zsh command line
I use zsh and emacs keybindings. Some time I need to execute the same command with different input. The input ususally have common substrings. Is there an easy way to replace parts of previous command ...
0
votes
1answer
29 views
Output line from file1 if not found in file2
I need to output the lines from file1 that are not found in file2, ideally using linux commandline.
Both files are uppercase A-Z, sorted, per-file unique, and contain only one word per line. ...
1
vote
1answer
80 views
how to create a runnable jar file from command line similar to eclipse
I understood that eclipse generates a runnable jar file with all library .jar files extracted and included in the jar file. How do I do the similar this while creating a jar file manually from command ...
0
votes
0answers
42 views
Linux Command - using pipe between cut and tee
I want to make this command working but it stoped until cut finish working so no output in file3.txt
proz -v --no-curses ...
-1
votes
0answers
15 views
Is there a way to use a bin directory if the directory exist and to use another command if not [closed]
In a rails application, I have a bin directory created with bundler. When I want to run a command generated I need to type bin/rails .... In projects where the is no bin directory I must to type rails ...
0
votes
0answers
32 views
bluetooth PCM communication is deaf
I have the following system:
bluetooth headset <-- HFP, HSP --> marvell bluetooth <-- PCM --> gsm modem
What I know:
First part works:
rfcomm0: 00:06:C6:36:02:92 -> 00:1A:7D:D0:04:6D ...
0
votes
1answer
37 views
MATLAB executing command line scripts for starting C++ programs? (without MEX)
I am running MATLAB 2011a under Ubuntu, and I have some C++ functions I execute from the command line such as `./community sample_networks/karate.bin -l -1 -q 0.01 > sample_networks/karateout.txt' ...
-1
votes
5answers
35 views
What's the difference between grep “str” . and grep “str” *
In grep "str" *
Does it mean grep everything where grep executed?
and what about grep -r "str" . which has more results than the former one
0
votes
1answer
68 views
PHP exec with nohup
I currently use nohup to run a long php script and redirect the live results to a file using this command
nohup php long_file.php >logs 2>&1 &
so i just go and visit logs file ...
-1
votes
1answer
44 views
How to Run GPG encryption command from C++ in Linux [closed]
Attempting to encrypt a file in Linux via C++.
Currently using
system("gpg -c ./testfile.txt");
The problem is that when you run gpg -c ./testfile.txt the shell asks for a passphrase and I don't ...
1
vote
2answers
30 views
Perform a command on multiple files using command line
Say I have the following files:
myfile1_1.dat
myfile1_2.dat
myfile2_1.dat
myfile2_2.dat
...
and I want to use the same command on each of them (whilst ignoring other files in the directory that do ...
1
vote
3answers
124 views
sudo killall java not eclipse [closed]
What is a good technique to "sudo killall java" but not the Eclipse process?
I have tried techniques where I grep on the classpath but everything I have tried seems messy.
1
vote
1answer
53 views
C TUI Developement - Help / Tutorials?
I have been looking through previous questions regarding this topic and so far none of them answer my question. I am looking for a way (without libraries) to build my own TUI from the ground up. I ...
-1
votes
1answer
324 views
Sed Command get text between two string while excluding the two strings using Terminal UNIX
So I have a sed command that looks like this:
sed -n "/DXImageTransform.Microsoft.AlphaImageLoader(src='/,/',sizingMethod='crop');/p"
/Users/ME/Documents/weather/yahooWeather.html > ...
0
votes
4answers
47 views
Ordering lines of a file numerically Linux/Unix
I have two files that I would like to compare. One file orders numbers
1 somedata otherdata
2 somedata otherdata
3 somedata otherdata
4 somedata otherdata
5 somedata otherdata
6 ...
1
vote
3answers
123 views
Shell script to read a list of words and compute their counts in a corpus.
I need to write a command line script in linux to do the following:
read a list of words from a text file (one word per line). say w_i
for each w_i computes the word count in a different text file.
...
3
votes
1answer
95 views
How do you filter out all unique lines in a file?
Is there a way to filter out all unique lines in a file via commandline tools without sorting the lines? I'd like to essentially do this:
sort -u myFile
without the performance hit of sorting.
3
votes
1answer
30 views
Pointing man pages to different location [closed]
In my environment, I am installing a different SSH server other than openSSH. When I issue a man ssh command, for example, I want it to point to the new ssh server man page, rather than the openssh ...
0
votes
0answers
61 views
byte counters for MAC address using IPTABLES
Assuming that I am the Server, and I want to watch bandwidth of downloading and uploading for the specific MAC address. With the uploading monitor chain. I use this:
iptables -N clientA_upload and ...
2
votes
3answers
107 views
Python script prints output of os.system before print
I have a python script test.py:
print "first"
import os
os.system("echo second")
On linux command line I execute
python test.py
which returns:
first
second
I then execute
python test.py > ...
1
vote
1answer
60 views
How to use zip command in unix? [closed]
Suppose i have a zip file Old.zip , inside it are fileA and fileB. then i unzip them using: unzip Old.zip -d Old, then i will have a directory named Old, with fileA and fileB inside.
Now the Old.zip ...
6
votes
2answers
89 views
How to update command line output?
In Linux, While stdout to command line, I want to update specific area, such as the apt-get output:
54% [Waiting for headers] [Waiting for headers] 211 kB/s 3s
the percentage, kB/s and ...
1
vote
2answers
44 views
Emacs C-x C-s save command creates duplicates
When I save a file in emacs (using C-x C-s) and then exit, the file is duplicated, but one file ends in a "~". For example, if I saved a file test.txt in emacs, my directory would show the files ...
-1
votes
1answer
107 views
sys.stdin does not close on ctrl-d
I have the following code in program.py
from sys import stdin
for line in stdin:
print line
I run, enter lines, and then press ctrl-d, but the program does not exit.
This does work:
$ printf ...
0
votes
5answers
115 views
Display php output on a txt file Linux command line
i currently have a blacklist.php file the generates a black list and I need a to have a blacklist.txt file on linux that it will pull the output from the php file. is this possible ?
1
vote
3answers
67 views
Bash script - find directory, and do something in it. Or find a file, and do something with it
This is what I have so far:
for f in 'svn ls repository_dir';
do
svn checkout repository_dir/$f/trunk/dir1/dir2/dir3/dir4/needed_dir
done
This works great for the projects (100's of them) that ...



