Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to change a set of characters between delimiters? Post 302939333 by Walter Misar on Tuesday 24th of March 2015 06:04:16 PM
Old 03-24-2015
Hm, works for me:

Code:
$ f="ABCD_1234_20150324_A02415453.PDF"
$ echo $f|cut -d'_' -f2 | ( read ID2; echo mv $f $(echo $f | sed "s/\(_2015.*\)_.*.PDF/\1_X01$ID2.PDF/") )
mv ABCD_1234_20150324_A02415453.PDF ABCD_1234_20150324_X011234.PDF

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how to set a variable to accept alpha-numeric characters?

I am working on a shell program that needs to accept alpha-numeric input (i.e., P00375); when I use a simple 'read' statement to read in the input (i.e., read LOG), I receive the message "p00375: bad number". How must I adjust my input statement to accept alpha-numerics? Thanks! Brent (3 Replies)
Discussion started by: bcaunt
3 Replies

2. Shell Programming and Scripting

Replacing set of characters with a value of a variable

I need to replace anything immediately after the pattern "standard01/" in a file with the value of a variable I don't know the length of the characters stored in that variable. - that might vary. I know there is some string after the pattern "standard01/", i don't know the what the string is or... (1 Reply)
Discussion started by: prekida
1 Replies

3. Shell Programming and Scripting

Need to change a set of lines between two given Pattrens

Hi All I have a Small Requiement I wanted to replace all the Follwing lines as follows Input:: file1 EVALUATE WS-TEMP-ATTR(15:1) WHEN 'D' MOVE DFHDARK TO WS-ATTR-COLOR WHEN OTHER MOVE DFHDFT ... (9 Replies)
Discussion started by: pbsrinivas
9 Replies

4. Shell Programming and Scripting

How to change only the x first characters of a string?

Hi, How can I replace x first characters from a string? I have a file with... say 10000 entries as follows: 00123456781 00123456782 00123456783 ... What I want to do is change the leading "00" with for example "12" The leading 00 can be in some files some other 1 or more digits e.g.... (2 Replies)
Discussion started by: Juha
2 Replies

5. UNIX for Dummies Questions & Answers

Why does set also change setenv variables?

I thought that set and setenv was easy enough to understand until I started experimenting. I noticed the same problem in a previous thread, so I will use it as an example. set command gave the following output: argv () cwd /homes/e/ee325328/assignment.2 home /homes/e/ee325328 path ( a... (2 Replies)
Discussion started by: benwj
2 Replies

6. UNIX for Dummies Questions & Answers

Change permission for a set of files

Hi there, I want to change from this permission -r-xr-xr-x to -r-xr-xr-- for a set of files under unix. Can someone help me to go-about doing this in one shot. Cheers, RN (2 Replies)
Discussion started by: karthickrn
2 Replies

7. Solaris

help me to change the character set

dears i am using solaris 10 i am facing a problem when i make setup for solaris i choose the country egypt and i select the language north america but i forget to do that the i found the date Jun written in arabic i want to change character set to written in english -rw-r--r-- 1 root ... (4 Replies)
Discussion started by: hosney00ux
4 Replies

8. Shell Programming and Scripting

search for a set of characters and move

I want to search/grep for a set of characters in a file(all occurences) and move them to another file. Any command line? regards, Sri (2 Replies)
Discussion started by: Sriranga
2 Replies

9. Shell Programming and Scripting

How to put delimiters in text files after fix characters?

Hi , i have a text file in which i want to put delimiters after certain characters ( fix),. like put a delimiter (any like ,) after 1-3 character than 4 than 5 than 6-17 ..... files looks like this (original)... (8 Replies)
Discussion started by: anamdev
8 Replies

10. Red Hat

PROC_MEM_RES how to set/unset/change

Hi all, Does anyone know how to change PROC_MEM_RES? We have a DB server with quite a few oracle instances (RAC) and we are getting critical alerts for PROC_MEM_RES. Anyone know how to increase the current setting or what we should do about it? Thanks in advance. john (2 Replies)
Discussion started by: jonnyd
2 Replies
checknr(1)						      General Commands Manual							checknr(1)

Name
       checknr - check nroff/troff files

Syntax
       checknr [-s] [-f] [-a.x1.y1.x2.y2. ... .xn.yn] [-c.x1.x2.x3... .xn] [file...]

Description
       The  command  checks  a	list of or input files for certain kinds of errors involving mismatched opening and closing delimiters and unknown
       commands.  If no files are specified, checks the standard input.  Delimiters checked are:

       5      Font changes using fx ... fP.

	      Size changes using sx ... s0.

	      Macros that come in open ... close forms, for example, the .TS and .TE macros which must always come in pairs.

       The command knows about the and macro packages.

       The command is intended to be used on documents that are prepared with in mind, much the same as It  expects  a	certain  document  writing
       style for f and s commands, in that each fx must be terminated with fP and each sx must be terminated with s0.  While it will work to
       directly go into the next font or explicitly specify the original font or point size, and many existing documents actually do this, such  a
       practice  will  produce complaints from Since it is probably better to use the fP and s0 forms anyway, you should think of this as a con-
       tribution to your document preparation style.

Options
       -a   Allows additional pairs of macros to be added to the list.	This must be followed by groups of six characters, each group  defining  a
	    pair  of  macros.	The six characters are a period, the first macro name, another period, and the second macro name.  For example, to
	    define a pair .BS and .ES, use -a.BS.ES.

       -c   Defines commands otherwise complained about as undefined.

       -f   Ignores f font changes.

       -s   Ignores s size changes.

Restrictions
       There is no way to define a 1 character macro name using -a.
       Does not correctly recognize certain reasonable characters, such as conditionals.

Diagnostics
       Complaints about unmatched delimiters.

       Complaints about unrecognized commands.

       Various complaints about the syntax of commands.

See Also
       eqn(1), nroff(1), troff(1), ms(7), me(7)

																	checknr(1)
All times are GMT -4. The time now is 08:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy