The unix-utils tag has no wiki summary.
0
votes
1answer
24 views
Pipe lines between two regex through another command
This is related to another question that I recently asked.
I have a text file which has multiple sections. Part of the file looks like this.
3. line 3
4. line 4
## Screenshots ##
1. line 1
2. line ...
1
vote
3answers
48 views
Print lines between two regex using sed
I have a text file which contains multiple sections and I want to print one of those sections.
Part of the file looks like
3. line 3
4. line 4
## Screenshots ##
1. line 1
2. line 2
3. line 3
4. ...
0
votes
1answer
8 views
setarch on a Mac
I am trying to compile a version of python on my Mac that requires the "setarch" command, but that command does not appear in my PATH (I'm running OSX 10.8.3, with XCode 4.6.2 installed). Is there a ...
0
votes
1answer
17 views
xargs and argument position
I have a directory with a couple of PHP files in multiple levels. I want to execute the following command for all of these PHP files.
php ../../i18n/add-textdomain.php -i bulk-delete file_name.php
...
0
votes
6answers
87 views
Remove duplicate lines (including the line that is duplicated) [duplicate]
I need to remove all lines that occur more than once in a file.
Example:
Line1
Line2
Line3
Line2
Result:
Line1
Line3
Python, Perl or unix-util, doesn't matter. Thank you.
0
votes
2answers
42 views
sort -u works wrong in some cases
Input file contains two lines:
추가
나인
Running uniq and sort -u commands:
$ uniq -c input_file
2 추가
$ sort -u input_file
추가
For some reasons these two strings are "equal" when they are ...
0
votes
0answers
10 views
regular expression to exclude comments
I am trying to use grep -v -e '' to exclude comments (lines with # as the first non-whitespace character) from a file.
The # can appear either at the begining of the line or there could be a ...
1
vote
1answer
41 views
avconv timelapse error: no such file or directory
I'm trying to make a timelapse from a bunch of jpgs. They've been dumped in /home/sd/capture
The command I'm trying to use is:
avconv -r 30 -i /home/sd/capture/0%04d.jpeg output.mpeg
Is there ...
0
votes
2answers
62 views
Search text matching a pattern inside an XML tag
I have a file which contains XML tags. Each line has a root element and a couple of sub elements into it. The structure resembles something like this
<document><title>some ...
1
vote
3answers
97 views
How to reorder a CSV's rows based on order of appearance of unique values with bash/unix tools?
I've used Python to parse a large test result file of flight data, but need to reorder its rows by grouping the same values together, in order of appearance.
The CSV is currently ordered:
(Flight ...
0
votes
2answers
65 views
Find and replace using regex in sed
I want to replace
# Bulk Delete #
with
=== Bulk Delete ===
I am using the following sed command.
sed "s/#\([^#]*\)#/===\1===/g" filename
It works, but it also replaces
### Translation
...
0
votes
3answers
46 views
Receiving strange error when piping yes into rm -r command
I receive the following
yes: standard output: broken pipe
yes: write error
when executing the following line in perl
system("cd /tmp; yes | rm -r directory1 directory2 file3 > /dev/null ...
0
votes
1answer
27 views
In the less pager, is there a way to show more lines before a search result?
I often search within less, but it puts the search result to the very top of the screen, which makes reading man pages difficult, since I'm searching for a word, but I really want to see the flag ...
3
votes
1answer
361 views
Fastest way to shuffle lines in a file in Linux
I want to shuffle a large file with millions of lines of strings in Linux. I tried 'sort -R' But it is very slow (takes like 50 mins for a 16M big file). Is there a faster utility that I can use in ...
-1
votes
3answers
40 views
Bash find where the current execution is located
I have a shell program in a directory (ie dir1/dothis.sh) - works fine when I cd to that directory and ./dothis.sh
if I created a ln to that directoy with a new name - dir2 and do dir2/dothis.sh
it ...
1
vote
1answer
75 views
use subprocess.Popen to run a unix tool that requires multiple input redirects
I'd like to execute this series of commands from within a python program.
wc -l <(comm -12 <(sort file1.txt) <(sort file2.txt))
I've been successful with the following:
sort_a = ...
0
votes
2answers
334 views
Parse the output of command in a shell script and store the result in a variable
When I execute the following svn command, I get the below output.
$ svn log -r 1:HEAD --limit 1 http://plugins.svn.wordpress.org/bulk-delete
...
0
votes
1answer
14 views
“ensure” like utility for adding content into .*rc files [closed]
I am looking for a command line utility, similar to a puppet "ensure" to install
some function or some string content in a given resource file, eg., .bashrc. without clobbering existing text or ...
0
votes
1answer
105 views
elinks http autentication
I'm trying to use linux elinks text browser to go to a website. This site requires http authentication. If I press escape it and hide the login prompt once and then If I try to go the particular ...
-2
votes
2answers
34 views
COMPARISION of REGEX
I am a newbie in shell scripting . I wish to search whether a string contains 'CI' in middle no matter what length it is.The letters may appear any where and the length can be variable. ALso I wish to ...
0
votes
0answers
377 views
Cross compiling for iOS5
Hi This issue is driving me crazy, must admit I'm no expert but Have tried Lion with Xcode4.2.1 and several older SDK's but this is the longest I have come, I believe it is just a question of a flag ...
1
vote
2answers
151 views
How to Get list of all file under the directory by type in C
I have to simulate the ls function of unix in C.
I have to create a program to "Get all files under any directory by type in C".
I googled and found programs which get lists of files, but they are ...
0
votes
1answer
231 views
httrack follow redirects
I try to mirror webpages recursively starting from URL supplied by user (there is a depth limit set of course). Wget didn't catch links from css/js so I decided to use httrack.
I try to mirror some ...
1
vote
2answers
162 views
Unix find with GNU Make to auto-update files
I have .haml files and want to convert them automatically into .html files and update the latter when .haml is changed.
The generic makefile rule is no problem:
%.html: %.haml
hamlpy $< $@
...
1
vote
2answers
341 views
unix command 'mv' failure
I am using move command mv -f $file1 $file2 to move a file from source directory to a destination directory. I am getting a failure message as:
mv: cannot create regular file $file2:File exists
...
0
votes
1answer
30 views
Striping out time components for data in a csv file with | seperated variables
A bit new to UNIX but I have a question with reagrds altering csv files going into a datafeed.
There are a few | seperated columns where the date has come back as (for example)
|07-04-2006 ...
1
vote
1answer
208 views
efficient sort | uniq for the case of a large number of duplicates
Summary : is there a way to get the unique lines from a file and the number of occurrences more efficiently than using a sort | uniq -c | sort -n?
Details: I often pipe to sort | uniq -c | sort -n ...
0
votes
0answers
238 views
What is a good workaround for “sort” command's limitation to 65535 characters per line?
Here is a snippet from Sort command's help functionality:
/REC[ORD_MAXIMUM] characters Specifies the maximum number of characters
in a record (default 4096, maximum 65535).
...
0
votes
1answer
53 views
What are the languages, I can use to create UNIX utilities?
I need to write a unix utility, what are the languages, I can use? I am good with C/C++, but I dont know any scripting language like shell/bash/perl/python. But used linux for most of my projects and ...
0
votes
2answers
138 views
Data section size in “size” command on Mac
Given the following output of the "size" command on Mac OS X 10.5 on an small executable, what is the value under __DATA? Is it the uninitialized data segment size or initialized data segment size? ...
0
votes
1answer
488 views
Windows batch file: move files older than X minutes to a different directory using UnixUtils find command
I found the unixutils for Windows and am trying to use the find command to move files older than 30 minutes to a different directory.
I have tried all of the following (also with \ at the end of ...
1
vote
1answer
134 views
unix:how to sort the bcp file based on the columns using sort utility?
Hi i have a requirement to sort the bcp file based on the column filed value.here field separator is used as \x01 and row separa
tor is used as \x02.All the information is stored in the single line of ...
0
votes
1answer
449 views
Cron job from cpanel.. no success
I tried a lot of methods but ended up with nothing in hand..My simple target is to reset a variable to zero at the end of the day.
i checked the location of php as "which php" and "whereis php"
...
1
vote
1answer
144 views
unix read command with special charecters
I am writing a shell script which will read a user input and do some processing
echo "Enter your query \n"
read query
echo $query > temp
I am facing an issue when i enter any special ...
1
vote
1answer
360 views
How to redirect the stdout and stderr in rolling file with Unix redirection
I have java application which I am running on Unix from the command prompt.
I am redirecting stdout and stderr to console.out and console.err files.
The file size is increasing because a lot of ...
1
vote
1answer
806 views
wget to clone a website, with links to directory not index.html
I would like to clone a wordpress blog with wget so that I can include it as static content in a web app I am writing.
At the moment I am using the following to clone the site:
wget -rk ...
0
votes
3answers
292 views
How do you do custom formatting with the uniq -c option?
From wikipedia:
uniq
-c Generate an output report in default style except that each line is preceded by a count of the number of times it occurred. If this option is specified, the -u and -d options ...
1
vote
3answers
218 views
Is the program `yes` used for anything significant?
When I first came across the 'yes' program in *nix, I couldn't think of a significant use for it.
How is this program used?
0
votes
2answers
156 views
parse output of script/utils-linux into human-readable form
How do I parse the output of script/utils-linux into human-readable form
or into something I can process with regexps?
There are some binary escape sequences used to display colours etc.
Is there a ...
1
vote
3answers
64 views
In a *nix environment, how would I group columns together?
I have the following text file:
A,B,C
A,B,C
A,B,C
Is there a way, using standard *nix tools (cut, grep, awk, sed, etc), to process such a text file and get the following output:
A
A
A
B
B
B
C
C
C
...
1
vote
3answers
2k views
Untar a UNIX-based operating system
I am trying to untar UNIX-based operating system from a .tar.gz file. In order to do so I use the following command:
tar -xvf rootfs.tar.gz -o
The -o flag is to not to preserve the ownership of ...
1
vote
2answers
609 views
Why does the UNIX sort utility ignore leading spaces without the option -b?
[This is the rewrite of a similar question I asked backwards... Sorry for the confusion!]
I'm confused about leading s and the standard sort utility. Consider the contents of myfile:
a
b
a
...
0
votes
0answers
81 views
SHA checkum commands - benchmarks and compatibility issues [closed]
I have looked into different command to generate SHA hashes and so far found:
sha<X>sum from GNU coreutils
shasum -a <X> - a Perl script
openssl sha<X>
Does anyone know of any ...
2
votes
1answer
389 views
Submitting multiple scripts to qsub in perl
I'm writing a perl script that, among other things submits three scripts to qsub. How do I "tell" my script when the first job is complete? I assume there's some way of accessing the variable where ...
1
vote
3answers
82 views
Symbolic links to symbolic links… partial canonicalization
Suppose I create a symbolic link "file2" to a file "file1" two directories above the current location (e.g., "ln -s ../../file1 file2". But now suppose that "file1" is also a symbolic link to a file ...
0
votes
2answers
239 views
Do you know a similar program for watch (unix watch command) on Windows?
I find unxutils and and gnuwin32 Packages don't have this command...
3
votes
3answers
5k views
How to sort the files according to the time stamp in unix? [closed]
How to sort the files according to the time stamp in unix?
I need to sort the files and also based on time they created.
Please help.
Thanks,
Srihari
0
votes
1answer
566 views
How to run my shell script from windows Webpage?
I want to execute some batch jobs from my unix box thro shell scripts.
Scenario:
I have some shell scripts in my unix box, want to run those scripts thro my windows webpage. This is to achieve by ...
1
vote
2answers
419 views
Cocoa 32 bit and 64 bit binaries within app
My latest Mac App got rejected from the Mac App Store.
Basically it didn't work due to a self contained unix executable contained within the app.
I have included a binary within my app before, that ...
3
votes
2answers
3k views
Tool for generating a call flow graph [C C++ solaris linux]
I'm quite fond of IDA, but I'm working in Solaris on this project. I do have a linux machine, and if nothing is in the same league as IDA then I'll convince management to purchase a license for it.
...


