How to read contents in each file and rename the file?
Hello All,
Can you help me in writing a script for reading the specific position data in a file and if that data found in that file that particular file should be renamed.
Ex: Folder : C:\\test
and Filename : CLSACK_112214.txt,CLSACK_112314.txt,CLSACK_112414.txt
Contents in the file would be :
So first I need to read the first file CLSACK_112214.txt and in that I need to check conditions like
if the position from 15 to 21 == *CLS02*
then rename the current file CLSACK_112214.txt to UPDATEACK_112214.txt
Else if the position from 15 to 21 == *CLS01*
then rename the current file CLSACK_112314.txt to UPDATEACK_112314.txt
if the position from 15 to 21 == *CLS01*
then rename the current file CLSACK_112414.txt to UPDATEACK_112414.txt
So the script should read the files in the folder one by one and if any of the 3 conditions below gets satisfied then the current file should be rename from CLSACK_XXXXXX.txt to UPDATEACK_112414.txt and then it should read next file and another file until the files in the folders scanning gets completed.
So anyone can give a script for the above scenario , it should be really helpful.
Thanks
Nandu
Last edited by rbatte1; 12-03-2014 at 11:31 AM..
Reason: Spellings and adding formatting to clearly mark file names and strings to search for
I don't see how your search will be effective on this most recent input, indeed in your first post you say that you are looking in columns 15-21 for one of three strings, but the input you have provided has that at column 13-19.
The actions are the same if you match any of the three conditions, so one statement should suffice if we can be sure of the criteria.
It would be useful if you can show what you have tried so far, tell us what tools you are most familiar with (so we write considering that you will have to look after this in future) and the version & level of OS you are running. From the directory name, I'm guessing that you are using an emulator under Windows, so that may pose other problems, but we'll address those if we hit them.
In the below there are two generic .vcf files (genome.S1.vcf and genome.S2.vcf) in a directory. There wont always be two genaric files but I am trying to use bash to rename each of these generic files with specfic text (unique identifier) within in each .vcf. The text will always be different, but... (11 Replies)
Like to have shell script to Read the given file contents into a merged one file with header of path+file name followed by file contents into a single output file.
While reading and merging the file contents into a single file, Like to keep the format of the source file.
... (4 Replies)
Trying to use sed to insert the contents of a file into the end of each line in another file
file1
This is a line
Here is another line
This is yet another line
Here is a fourth line
file2
TEXT
desired output
This is a line TEXT
Here is another line TEXT
This is yet another... (6 Replies)
I am trying to use the two files shown below to either remove or rename contents in one of those files. If in file1.txt $5 matches $5 of file2.txt and the value in $1 of file1.txt is not "No Match" then that value is substituted for all values in $5 and $1 of file2.txt. If however in $1 ... (5 Replies)
Hi,
I am facing issue while reading data from a file in UNIX. my requirement is to compare two files and for the text pattern matching in the 1st file, replace the contents in second file by the contents of first file from start to the end and write the contents to thrid file.
i am able to... (2 Replies)
Hi, I'm trying to implement a C program on ubuntu which reads the contents of a file that is passed in as an argument and then displays it to the screen. So far I've cobbled together this from bits online but most of it is probably wrong as its all copied and pasted...
#include <stdio.h>... (2 Replies)
I have made a script something like this. I want it to read the contents of either file or directory but 'cat' and 'ls' is not working. Can anyone help me? I am a newbie in scripting so dont know much about it. I also dont know how can i put my code separatly on this forum
#!/bin/bash
echo... (9 Replies)
My file is in this format :
username : student information : default shell : student ID
Eg :
joeb:Joe Bennett:/bin/csh:1234
jerryd:Jerry Daniels:/bin/csh:2345
deaverm: Deaver Michelle:/bin/bash:4356
joseyg:Josey Guerra:/bin/bash:8767
michaelh:Michael Hall:/bin/ksh:1547
I have to... (1 Reply)
Hi Friends,
I am new to this forum. Just struck up with a logic.
I have a csv file seperated by ":" (colons).
This csv file contains hostname and groups as follows:
HOSTNAME:VT Group
SGSGCT2AVPX001:Team1
SGSGCT2AVPX003:Team2
SGSGCT2AVPX005:Team2
PHMNCTTAVPX001:Team3
I want to... (2 Replies)
Hello guys, thank God that I found this forum.
I hope that someone can help me because I don't have any idea on how to start it. I know that for some of you this is a very simple task but I'm not as advance on shell scripting like many people out there.
I got this file with a permanent... (10 Replies)