Sponsored Content
Top Forums Shell Programming and Scripting Limit on Number of characters in a line - Vi editor Post 302557075 by birei on Tuesday 20th of September 2011 11:10:54 AM
Old 09-20-2011
Hi nram_krishna@ya,

No problem in my system:
Code:
$ vim --version | head -1
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Sep  5 2011 21:27:42)
$ for num in `seq 1 5000`; do printf "%c" "$num" >>myfile.txt; done; echo >>myfile.txt
$ wc -l myfile.txt 
1 myfile.txt
$ wc -c myfile.txt 
5001 myfile.txt

I open myfile.txt with vim, press $ and the position points 1,5000

Regards,
Birei
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Limit of no of characters PER LINE in a unix file

Hi , Whats the limit of characters PER LINE in a unix file , allowed for editing..sort , cut , sed , awk etc (5 Replies)
Discussion started by: mohapatra
5 Replies

2. AIX

Is the Length of User ID for AIX Limit to 8 Characters?

Hi, I'm using AIX version 5.3 currently. I'm trying to create a user id, e.g. andyleong, which the system prompted the length is too long. 1. I would like to know is that the length of user id is limited to maximum 8 characters for AIX. 2. Is it apply to all versions of AIX? If no... (2 Replies)
Discussion started by: meihua_t
2 Replies

3. Shell Programming and Scripting

Maximum number of characters in a line.

Hi, Could any one please let me know what is the maximum number of characters that will fit into a single line of a flat file on a unix. Thanks. (1 Reply)
Discussion started by: Shivdatta
1 Replies

4. HP-UX

cron 80 characters limit

Hello everyone. I am trying to set up a monitor based on a "top" command statistic as follows: top -bc -n1 > output.txt I've put this command into a small script which is called by a cron... but there is something strange happening: the cron is limiting the output to output.txt to 80... (3 Replies)
Discussion started by: MartinF
3 Replies

5. Shell Programming and Scripting

help: Awk to control number of characters per line

Hello all, I have the following problem: My input is two sorted files: file1 >1_19_130_F3 T01220131330230213311013000000110000 >1_23_69_F3 T01200211300200200010000001000000 >1_24_124_F3 T010203113002002111111200002010 file2 >1_19_130_F3 24 18 9 18 23 4 11 4 5 9 5 8 15 20 4 4 7 4... (9 Replies)
Discussion started by: DerSeb
9 Replies

6. UNIX for Dummies Questions & Answers

Limit the number of characters in a bash output

I have a script that outputs the weather on two lines. If possibly I would like to set a character limit on them Currently it outputs something like but I would like to limit the lines so appends an ellipsis if nescessary: This is the script #! /bin/bash curl -s --connect-timeout... (2 Replies)
Discussion started by: Light_
2 Replies

7. UNIX for Dummies Questions & Answers

Limit reoccurrance of characters in lines

Hey guys and gals, Working on a script to limit the reoccurrance of characters in a line. sed "/\(.\).*\1/d" -i file.txt sed "/\(.\).*\1.*\1/d" -i file.txt sed "/\(.\).*\1.*\1.*1/d" -i file.txt .. To limit character reoccurance with 1x, 2x, 3x etc. However I would like to be able to... (2 Replies)
Discussion started by: TAPE
2 Replies

8. UNIX for Dummies Questions & Answers

Is there a limit in number of lines to be Copy pasted in VI editor ?

In my old shop, we only had AIX machines there (all of version 6.1 ). FTP ports were not open for these AIX machines because of some security thing. So, we can't ftp scripts in ASCII mode. When we wanted to copy huge scripts (shell scripts, sql scripts , ..etc) from our Windows based laptop... (6 Replies)
Discussion started by: kraljic
6 Replies

9. Shell Programming and Scripting

[Solved] How to separate one line to mutiple line based on certain number of characters?

hi Gurus, I need separate a file which is one huge line to multiple lines based on certain number of charactors. for example: abcdefghi high abaddffdd I want to separate the line to multiple lines for every 4 charactors. the result should be abcd efgh i hi gh a badd ffdd Thanks in... (5 Replies)
Discussion started by: ken6503
5 Replies

10. Shell Programming and Scripting

Limit the number of characters in bash output

Hi, I need some help with this: I'm making a script which does a couple of things with image files. The script is supposed to echo the number of each image it is processing like this: Processing image1.jpgThe problem is with images with very long filenames, so I want to know how to limit the... (5 Replies)
Discussion started by: Shadow_Reaper
5 Replies
EBook::Tools::MSReader(3pm)				User Contributed Perl Documentation			       EBook::Tools::MSReader(3pm)

NAME
EBook::Tools::MSReader - Helper code for working with Microsoft Reader (.lit) e-books. SYNOPSIS
use EBook::Tools::MSReader qw(find_convertlit find_convertlit_keys system_convertlit); $EBook::Tools::MSReader::convertlit_cmd = '/opt/convertlit/clit'; $EBook::Tools::MSReader::convertlit_keys = '/opt/convertlit/keys.txt'; my $convertlit = find_convertlit(); my $keyfile = find_convertlit_keys(); system_convertlit(infile => 'myfile.lit', dir => 'myfile-unpacked'); PROCEDURES
All procedures are exportable, but none are exported by default. "find_convertlit()" Attempts to locate the convertlit executable by making a test execution on predicted locations (including just checking PATH) and looking in the EBook::Tools user configuration directory (see "userconfigdir()" in EBook::Tools. Returns the system command used for a successful invocation, or undef if nothing worked. This will use package variable $convertlit_cmd as its first guess, and set that variable to the return value as well. "find_convertlit_keys($filename)" Attempts to locate the convertlit "keys.txt" file by checking predicted filenames, both in the current working directory and in the EBook::Tools user configuration directory (see "userconfigdir()" in EBook::Tools. If $filename is provided, the file "basename-keys.txt" will also be checked in both locations. Returns the name of the first file found, or undef if nothing was found. This will use package variable $convertlit_keys as its first guess, and set that variable to the return value as well. "system_convertlit(%args)" Runs "convertlit" to extract or downconvert a MS Reader .lit file. The procedures find_convertlit() and find_convertlit_keys() are both called to locate necessary helper files. Returns the return value from convertlit, or undef if convertlit or the input file could not be found, or neither output file nor directory is specified. Arguments o "infile" The input filename. If not specified or invalid, the procedure croaks. o "outfile" The output filename. If this is specified convertlit will perform a downconversion. o "dir" The output directory. If this is specified, and "outfile" is not, convertlit will perform an extraction. If both this and "outfile" are specified, convertlit will downconvert and place the downconverted file into the specified directory. o "keyfile" The location of the "keys.txt" file containing the encryption keys, if available. This is only required if the ".lit" file is DRM- protected and package variable $convertlit_keys does not point to the correct file. BUGS AND LIMITATIONS
o All handling happens through ConvertLIT as an external helper. Native Perl code may eventually be written to handle non-DRMed extraction. o Unit tests are unwritten AUTHOR
Zed Pobre <zed@debian.org> LICENSE AND COPYRIGHT
Copyright 2008 Zed Pobre Licensed to the public under the terms of the GNU GPL, version 2. ConvertLIT (not included) is copyright 2002, 2003 Dan A. Jackson, and licensed under the terms of the GNU GPL, version 2 or later. perl v5.10.1 2012-01-05 EBook::Tools::MSReader(3pm)
All times are GMT -4. The time now is 09:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy