<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do I amend lines of data within multiple text files in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539350#M148594</link>
    <description>&lt;P&gt;Ok, so I'm looking to create folders for every working day of a month, and amend a couple of lines within a text file and copy to each of the newly created folders. I've figured out how create the folders, I'm looking to alter text within a file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will have a default file that I want to edit the text within, and output the amended file to a different folder location. The default file looks as below, with the text highlighted in green is what I'll need to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Batch ini file&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# lines beginning with a "#" are ignored as comments&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Common Variables here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;params=COMMON&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;debug=no&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;directory=/ROOT_LOCATION/CLIENT_MONYYYY/DDMMYYYY/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;filename=CLIENT_DDMMYYYY&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;e.g. the file for today will have been manually changed from the above to the following format:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;directory=/data_location/Test_Feb2018/28022019/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;filename=Test_28022019&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I will have&amp;nbsp;a look at the background steps of the jobs that the above file is needed for to see if all of the lines above the params=COMMON line are required, as if not, it would cut down how many lines need reading in... on your code, I assume that any subsequent&amp;nbsp;lines on the files would need to be read in too? There are quite a number of additional settings beneath the lines I want to amend which do not need editing... it's solely the above mentioned lines I want to change.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Feb 2019 16:02:13 GMT</pubDate>
    <dc:creator>ciaranhillery</dc:creator>
    <dc:date>2019-02-28T16:02:13Z</dc:date>
    <item>
      <title>How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538283#M148166</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking to amend the following lines of text on multiple .txt files, using a macro if at all possible. These .txt files are configuration files that are used for running daily jobs which need to be manually amended every (working) day on Unix&amp;nbsp;e.g. today's directory will be &lt;EM&gt;/client_Feb2019/25022019/&lt;/EM&gt;,&amp;nbsp;with the&amp;nbsp;filename being amended to &lt;EM&gt;client_25022019&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;directory=/root_location/client_MonYYYY/DDMMYYYY/&lt;BR /&gt;filename=client_DDMMYYYY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to amend the lines using the &lt;EM&gt;sed&lt;/EM&gt; command, example below,&amp;nbsp;but am looking for an easier way of amending the lines than manually changing the dates etc. on each sed command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sed -e "s/directory=(old)/directory=(needed)/g" -e "s/filename=(old)/filename=(needed)/g" (location of root file)/(root filename).txt&amp;nbsp;&amp;gt; (run location)/(new filename).txt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking to do this for 4 separate clients, and amending/creating the amended&amp;nbsp;.txt files for every working day of the month. I've already found code to extract the working days per month, and assign to a macro variable.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 14:52:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538283#M148166</guid>
      <dc:creator>ciaranhillery</dc:creator>
      <dc:date>2019-02-25T14:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538287#M148169</link>
      <description>&lt;P&gt;You could do something like:&lt;/P&gt;
&lt;PRE&gt;/* Set up dir list - change for your operating system */
filename tmp pipe 'dir "c:/root_location" /b';

/* Read list of files in and for each one execute a system command to rename */
data _null_;
  length buff want str $200;
  infile tmp;
  input buff $;
  want=catx("_","client",scan(buff,2,"/"));
  str=cat('x ',"'",'ren ','"c:/root_location/',strip(buff),'" "c:/root_location/',strip(want),'"');
  call execute(str);
run;

filename tmp clear;
&lt;/PRE&gt;
&lt;P&gt;Do note, that is based on Windows, and I have nothing to test it on.&amp;nbsp; But something like that should work.&amp;nbsp; Its just a matter of pulling in a list of file names, then using call execute to shoot out a rename from to.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 15:04:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538287#M148169</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-25T15:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538320#M148179</link>
      <description>&lt;P&gt;Thanks for responding. My text files don't have data fields as such, see the beginning of the file below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Batch ini file&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# lines beginning with a "#" are ignored as comments&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Common Variables here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;params=COMMON&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;debug=no&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;directory=/ROOT_LOCATION/CLIENT_MONYYYY/DDMMYYYY/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;filename=CLIENT_DDMMYYYY&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to do is amend the directory and filename settings on the files... the root file will be named as above, so want to replace the relevant text with what I need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2019 16:15:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538320#M148179</guid>
      <dc:creator>ciaranhillery</dc:creator>
      <dc:date>2019-02-25T16:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538336#M148186</link>
      <description>Why do want to do this with sas? I would use a scripting language, maybe Powershell.</description>
      <pubDate>Mon, 25 Feb 2019 16:48:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538336#M148186</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-25T16:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538947#M148416</link>
      <description>&lt;P&gt;I am looking to doing it via SAS (on Unix) as the folders and files I need are used on another Unix box, so I was hoping to be able to make all the amendments on SAS, then transfer the newly created folders and amended files across using &lt;EM&gt;scp&lt;/EM&gt; function.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 13:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538947#M148416</guid>
      <dc:creator>ciaranhillery</dc:creator>
      <dc:date>2019-02-27T13:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538952#M148418</link>
      <description>&lt;P&gt;Sorry, you have totally lost me now.&amp;nbsp; What is it you want to do, show examples - clear examples.&amp;nbsp; The code I provided creates a series of rename operating system calls to rename a file from one filename to another.&amp;nbsp; Are you saying now that you want to alter text within a file?&amp;nbsp; If so then that is a totally different setup, you would read the file in and then write it out again:&lt;/P&gt;
&lt;PRE&gt;data _null_;
  infile "....txt";
  file "....txt";
  length buff $2000;
  input buff $;
  if index(buff,"filename") then do;
    /* do you text change here */
  end;
  put buff;
run;
&lt;/PRE&gt;
&lt;P&gt;With this you read the file one line at a time then write that back out, the if takes effect on the line read in.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 13:19:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/538952#M148418</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-27T13:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539350#M148594</link>
      <description>&lt;P&gt;Ok, so I'm looking to create folders for every working day of a month, and amend a couple of lines within a text file and copy to each of the newly created folders. I've figured out how create the folders, I'm looking to alter text within a file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will have a default file that I want to edit the text within, and output the amended file to a different folder location. The default file looks as below, with the text highlighted in green is what I'll need to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Batch ini file&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# lines beginning with a "#" are ignored as comments&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;# Common Variables here&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;#&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#800000"&gt;############################################################&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;params=COMMON&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;debug=no&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;directory=/ROOT_LOCATION/CLIENT_MONYYYY/DDMMYYYY/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;filename=CLIENT_DDMMYYYY&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;e.g. the file for today will have been manually changed from the above to the following format:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;directory=/data_location/Test_Feb2018/28022019/&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;filename=Test_28022019&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I will have&amp;nbsp;a look at the background steps of the jobs that the above file is needed for to see if all of the lines above the params=COMMON line are required, as if not, it would cut down how many lines need reading in... on your code, I assume that any subsequent&amp;nbsp;lines on the files would need to be read in too? There are quite a number of additional settings beneath the lines I want to amend which do not need editing... it's solely the above mentioned lines I want to change.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 16:02:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539350#M148594</guid>
      <dc:creator>ciaranhillery</dc:creator>
      <dc:date>2019-02-28T16:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539450#M148627</link>
      <description>&lt;P&gt;Would it help you if you could run a one-line command?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro ini (client=Test, ddmmyyyy=20022019, folder=/ROOT_LOCATION)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The idea is that this command would generate the required text file, with the proper changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some short-cuts could be built in.&amp;nbsp; So far, it looks like we can compute MONYYYY based on DDMMYYYY.&amp;nbsp; If we knew that the default should always be to use the current month, that could possibly be shortened further.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might need to submit many such lines, or it might be possible to automate the calls to the macro.&amp;nbsp; But first let's address whether that would be a viable solution.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 19:03:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539450#M148627</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-02-28T19:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539573#M148693</link>
      <description>&lt;P&gt;I was hoping for a solution along these lines tbh! I have already got the relevant working day dates&amp;nbsp;written to a macro created in a previous step on my code (the &lt;EM&gt;ddmmyyyy&lt;/EM&gt; date that I'm looking to change on both lines within my file)... the previous step of my code extracts the working days per month and creates the date folder used in the&amp;nbsp;&lt;EM&gt;directory&lt;/EM&gt; line:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;directory=/data_location/Test_Feb2018/&lt;FONT color="#FF0000"&gt;28022019&lt;/FONT&gt;/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes, &lt;SPAN&gt;the default MONYYYY date in the &lt;EM&gt;directory&amp;nbsp;&lt;/EM&gt;line should always be to use the current month.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ultimately my goal is to be able to run a program at the beginning of each month, which will create the daily working day folders, and amend the lines within the needed control file for each working day so that it doesn't have to be manually done every day of the month.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 10:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539573#M148693</guid>
      <dc:creator>ciaranhillery</dc:creator>
      <dc:date>2019-03-01T10:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I amend lines of data within multiple text files</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539576#M148694</link>
      <description>&lt;P&gt;Perhaps thinking about this wrong, what I would do is this:&lt;/P&gt;
&lt;PRE&gt;%macro Create_Folder (d=);

  /* From d derive monyyyy var */
  data _null_;
    temp=input("&amp;amp;d.",ddmmyy8.);
    temp2=substr(put(temp,date9.),3);
    call symputx('mmmyyyy',temp2);
  run;

  /* Create folder */
  x 'mkdir "c:/data_location/Test_&amp;amp;mmmyyyy./&amp;amp;d."';

  /* Write out text file to directory */
  data _null_;
    file "c:/data_location/Test_&amp;amp;mmmyyyy./&amp;amp;d./batch_ini_file.txt";
    put "#####################################";
    ...
    put "directory=/data_location/Test_&amp;amp;mmmyyyy./&amp;amp;d./";
    put "filename="Test_28022019";
  run;

%mend Create_Folder;

/* Call macro for each month of year (note you can't do by day as you don't have day in filename */
data _null_;
  do i=1 to 12;
    call execute('%Create_Folder (d=2018',put(i,z2.),'01);');
  end;
run;&lt;/PRE&gt;
&lt;P&gt;This will create a folder with the text file inside for each month of the year.&lt;/P&gt;
&lt;P&gt;I would highly advise against using MMMYYYY format for anything (its not granular enough, and its a bad representation of date as language changes can mean different spellings, it doesn't sort etc.)&amp;nbsp; Use Iso dates, they are much better.&lt;/P&gt;
&lt;P&gt;Also, I would question why you would need to do this, sound like a big process for something which doesn't sound like it adds any value to me?&amp;nbsp; I would hope most people nowadays use version control software of some kind, so this dated files/folders thing should be long gone, let the software manage that for you.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 10:34:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-amend-lines-of-data-within-multiple-text-files/m-p/539576#M148694</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-03-01T10:34:20Z</dc:date>
    </item>
  </channel>
</rss>

