Sponsored Content
Top Forums Shell Programming and Scripting This script cut size of files "Lol" change string in files Post 302263086 by Franklin52 on Sunday 30th of November 2008 03:17:32 PM
Old 11-30-2008
Probably your sed version doesn't support the -i option. Use a temporary file, and if you don't have to search in underlying directories you can avoid the use if find:

Code:
#!/bin/bash

for file in *.txt
do
  sed 's/Ontem/AntesdeOntem/g' "$file" > tempfile
  mv tempfile "$file"
done
echo "done"

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help for saving vertical datas to horizontal with "awk" or "cut"

hi, i have a file having datas like that ./a.txt 12344 12345 12346 12347 ..... ..... ... i want to save this datas to another file like that ./b.txt 12344 12345 12346 12347 ... ... ... i think awk can make this but how? :) waiting for ur help. (3 Replies)
Discussion started by: mercury
3 Replies

2. Shell Programming and Scripting

Unix commands delete all files starting with "X" except "X" itself. HELP!!!!?

im a new student in programming and im stuck on this question so please please HELP ME. thanks. the question is this: enter a command to delete all files that have filenames starting with labtest, except labtest itself (delete all files startign with 'labtest' followed by one or more... (2 Replies)
Discussion started by: soccerball
2 Replies

3. Shell Programming and Scripting

Delete files older than "x" if directory size is greater than "y"

I wrote a script to delete files which are older than "x" days, if the size of the directory is greater than "y" #!/bin/bash du -hs $1 while read SIZE ENTRY do if ; then find $1 -mtime +$2 -exec rm -f {} \; echo "Files older than $2 days deleted" else echo "free Space available"... (4 Replies)
Discussion started by: JamesCarter
4 Replies

4. Shell Programming and Scripting

"Join" or "Merge" more than 2 files into single output based on common key (column)

Hi All, I have working (Perl) code to combine 2 input files into a single output file using the join function that works to a point, but has the following limitations: 1. I am restrained to 2 input files only. 2. Only the "matched" fields are written out to the "matched" output file and... (1 Reply)
Discussion started by: Katabatic
1 Replies

5. Red Hat

files having Script which works behind "who" & "w" commands

Dear All, plz print the path of files which have the script of "who" & "w" commands. thnx in advance. (6 Replies)
Discussion started by: saqlain.bashir
6 Replies

6. Shell Programming and Scripting

how to use "cut" or "awk" or "sed" to remove a string

logs: "/home/abc/public_html/index.php" "/home/abc/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" how to use "cut" or "awk" or "sed" to get the following result: abc abc xyz xyz xyz (8 Replies)
Discussion started by: timmywong
8 Replies

7. Shell Programming and Scripting

Find lines with "A" then change "E" to "X" same line

I have a bunch of random character lines like ABCEDFG. I want to find all lines with "A" and then change any "E" to "X" in the same line. ALL lines with "A" will have an "X" somewhere in it. I have tried sed awk and vi editor. I get close, not quite there. I know someone has already solved this... (10 Replies)
Discussion started by: nightwatchrenba
10 Replies

8. Shell Programming and Scripting

Delete all log files older than 10 day and whose first string of the first line is "MSH" or "<?xml"

Dear Ladies & Gents, I have a requirement to delete all the log files in /var/log/test directory that are older than 10 days and their first line begin with "MSH" or "<?xml" or "FHS". I've put together the following BASH script, but it's erroring out: for filename in $(find /var/log/test... (2 Replies)
Discussion started by: Hiroshi
2 Replies

9. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

10. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies
Bio::Tools::Run::RNAMotif(3pm)				User Contributed Perl Documentation			    Bio::Tools::Run::RNAMotif(3pm)

NAME
Bio::Tools::Run::RNAMotif - Wrapper for local execution of rnamotif, rm2ct, rmfmt, rmprune SYNOPSIS
#run rnamotif|rmfmt|rm2ct my @params = ( descr => 'pyrR.descr', fmt => 'gb', setvar => 'ctx_maxlen=20', context => 1, sh => 1, ); my $factory = Bio::Tools::Run::RNAMotif->new(-program =>'rnamotif', -prune => 1, @params); # Pass the factory a Bio::Seq object or a file name # Returns a Bio::SearchIO object #my $searchio = $factory->run("B_sub.gb"); my $searchio = $factory->run($seq); while (my $result = $searchio->next_result){ while(my $hit = $result->next_hit){ while (my $hsp = $hit->next_hsp){ print join(" ", ( $r->query_name, $hit->name, $hsp->hit->start, $hsp->hit->end, $hsp->meta, $hsp->score, )), " "; } } } # Pass a finished report through rmfmt (-a format only) # Returns Bio::AlignIO object my $aio = Bio::AlignIO->new(-file=>"rna.msf",-format=>'msf'); my $factory = Bio::Tools::Run::RNAMotif->new('program'=>'rmfmt', 'a' => 1); my $alnin = $factory->run('trna.rnamotif'); my $aln = $alnin->next_aln; $aio->write_aln($aln); DESCRIPTION
Wrapper module for Tom Macke and David Cases's RNAMotif suite of programs. This allows running of rnamotif, rmprune, rm2ct, and rmfmt. Binaries are available at http://www.scripps.edu/mb/case/casegr-sh-3.5.html. This wrapper allows for one to save output to an optional named file or tempfile using the '-outfile_name' or '-tempfile' parameters; this is primarily for saving output from the rm2ct program, which currently does not have a parser available. If both a named output file and tempfile flag are set, the output file name is used. The default setting is piping output into a filehandle for parsing (or output to STDERR, for rm2ct which requires '-verbose' set to 1). WARNING: At this time, there is very little checking of parameter settings, so one could have an error if setting the worng parameter for a program. Future versions will likely add some error checking. NOTES ON PROGRAM PARAMETERS
All program parameters are currently supported. Of note, the 'D' parameter, used for setting the value of a variable to a value, is changed to 'set_var' to avoid name collisions with 'd' (used for dumping internal data structures). FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: http://redmine.open-bio.org/projects/bioperl/ AUTHOR - Chris Fields Email: cjfields-at-uiuc-dot-edu CONTRIBUTORS
cjfields-at-uiuc-dot-edu APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $wrapper = Bio::Tools::Run::RNAMotif->new(@params) Function: creates a new RNAMotif factory Returns: Bio::Tools::Run::RNAMotif Args : list of parameters -tempfile => set tempfile flag (default 0) -outfile_name => set file to send output to (default none) -prune => set rmprune postprocess flag (default 0) program_name Title : program_name Usage : $factory>program_name() Function: holds the program name Returns: string Args : None program_dir Title : program_dir Usage : $factory->program_dir(@params) Function: returns the program directory, obtained from ENV variable. Returns: string Args : version Title : version Usage : $v = $prog->version(); Function: Determine the version number of the program Example : Returns : float or undef Args : none run Title : run Usage : $obj->run($seqFile) Function: Runs RNAMotif programs, returns Bio::SearchIO/Bio::AlignIO Returns : Depends on program: 'rnamotif' - returns Bio::SearchIO 'rmfmt -a' - returns Bio::AlignIO all others - sends output to outfile, tempfile, STDERR Use search() (for Bio::SearchIO stream) or get_AlignIO() (for Bio::AlignIO stream) for a uniform Bioperl object interface. Args : A Bio::PrimarySeqI or file name Note : This runs any RNAMotif program set via program() search Title : search Usage : $searchio = $obj->search($seqFile) Function: Runs 'rnamotif' on seqs, returns Bio::SearchIO Returns : A Bio::SearchIO Args : A Bio::PrimarySeqI or file name Note : Runs 'rnamotif' only, regardless of program setting; all other parameters loaded get_AlignIO Title : get_AlignIO Usage : $aln = $obj->get_AlignIO($seqFile) Function: Runs 'rmfmt -a' on file, returns Bio::AlignIO Returns : A Bio::AlignIO Args : File name Note : Runs 'rmfmt -a' only, regardless of program setting; only file name and outfile (if any) are set tempfile Title : tempfile Usage : $obj->tempfile(1) Function: Set tempfile flag. When set, writes output to a tempfile; this is overridden by outfile_name() if set Returns : Boolean setting (or undef if not set) Args : [OPTIONAL] Boolean prune Title : prune Usage : $obj->prune(1) Function: Set rmprune flag. When set, follows any searches with a call to rmprune (this deletes some redundant sequence hits) Returns : Boolean setting (or undef if not set) Args : [OPTIONAL] Boolean _run Title : _run Usage : $obj->_run() Function: Internal(not to be used directly) Returns : Args : _setparams Title : _setparams Usage : Internal function, not to be called directly Function: creates a string of params to be used in the command string Example : Returns : string of params Args : _writeSeqFile Title : _writeSeqFile Usage : obj->_writeSeqFile($seq) Function: Internal(not to be used directly) Returns : writes passed Seq objects to tempfile, to be used as input for program Args : perl v5.12.3 2011-06-18 Bio::Tools::Run::RNAMotif(3pm)
All times are GMT -4. The time now is 07:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy