Batch file to insert text line
Closed
Fedexal
-
Mar 4, 2010 at 09:06 PM
Richard.Williams Posts 25 Registration date Saturday November 7, 2009 Status Member Last seen July 18, 2012 - Mar 18, 2010 at 11:55 AM
Richard.Williams Posts 25 Registration date Saturday November 7, 2009 Status Member Last seen July 18, 2012 - Mar 18, 2010 at 11:55 AM
Related:
- Batch file to insert text line
- Windows 10 iso file download 64-bit - Download - Windows
- Kmspico zip file download - Download - Other
- Ping batch file output to text - Guide
- Tiny 11 iso file download - Download - Windows
- How to insert picture in word without moving text - Guide
1 response
Richard.Williams
Posts
25
Registration date
Saturday November 7, 2009
Status
Member
Last seen
July 18, 2012
14
Mar 18, 2010 at 11:55 AM
Mar 18, 2010 at 11:55 AM
You want to insert "<INTU>BID3000>" after "<LANGUAGE>ENG" in file "C:/folder1/file.qbo" (assuming).
Try this script.
Copy and paste above script in file "C:/Scripts/QBO.txt". This script is in biterscripting. Start biterscripting and enter this command.
That will do the necessary change in file "C:/folder1/file.qbo". If you need to do this in multiple qbo files, you can create a file loop.
Try this script.
# Script QBO.txt var str file, content cat $file > $content stringappender -c "^"<LANGUAGE>ENG^" "<INTU>BID3000>" $content > null echo $content > { echo $file }
Copy and paste above script in file "C:/Scripts/QBO.txt". This script is in biterscripting. Start biterscripting and enter this command.
script "C:/Scripts/QBO.txt" file("C:/folder1/file.qbo")
That will do the necessary change in file "C:/folder1/file.qbo". If you need to do this in multiple qbo files, you can create a file loop.