I have been trying to come up with a program that can do this:
Say I have a file named "sir" with a single field;
Code:
10
229
288
35
83
47
3
I want to create a file "gen" with three fields with the data in file "sire" listed in field 1 while field 2 and 3 are just 1 each like this:
Code:
SPARSE 53000 1 1
10 1 1
229 1 1
288 1 1
35 1 1
83 1 1
47 1 1
3 1 1
Hi,
I am unable to get this script to work as desired. Basically, if an argument "log" is sent into the script, it outputs the result of the Make to a file output.log. However, if the argument is not passed, I want the output to be just put on screen (no redirection).
Hi
I have a file which I am reading line by line and processing it.
But the last line is not getting read in the file loop until I put an enter in the end.
Code:
#!/bin/ksh -p
v_org_id=${P1}
FILE=${P2}
NEW_FILE_NAME=$APPLPTMP/b1.txt
BAKIFS=$IFS
IFS=$'\n'
exec 0<"$FILE"
echo "File to be processed.....: ${FILE}"
while read -r line
do
v_initial=`echo "$line&qu
Hello,
I've been stuck with this for a few days now :wall:, so I'm hoping someone out there might be kind enough to help me.
I need to do a "file exist" check with a variable in the file name. After that I need to do a line count on the file, and output its results to a txt file.
For simplicity/compliance reasons, I have simplified all my paths and file names.
Hello All,
I have a bash script and in it at some point I call an Expect Script that does some stuff and saves its
output in a ".txt" file.
Example "/path/to/my/file/Expect_Output.txt" file: notice the 2nd line is empty in the file...
Code:
Data for Host-1 (192.168.1.110)
Checking the status...
Status is GOOD
Then later on in my Bash script, I run the following command
Hello all, I am working on a python script and this is what i have
Code:
from sys import argv
script, filename = argv
print "We're going to erase %r " % filename
print "If you don't want that, hit Ctrl -C (^C)."
print "If you do want that, hit RETURN."
raw_input("?")
print "Opening the file..."
target = open(filename, 'w')
print "Tr
Hello All,
In a Bash Script I'm writing I have a section where I loop through a text file that was
outputted by another script. In the text file some of the strings in there are enclosed with
the BOLD "character sequences" (i.e. "\033[1m" ) and the "OFF" sequence (i.e. "\033[0m" ).
I need a script that could take in a line from one file and match the line up with codes in the order file.
My first file, called names.txt ,contains:
>123456789
>987654321
>15946873
>157987513
The other file, called data,contains:
GB_00012.faa
GB_6789333.faa
GB_100098.faa
GB_1237700.faa
All the data files contain a line startin with ">" symbol, and contai
Hi All, I have a file. This file contain huge amount of data. I want to modify this file. I want enter new line when count of "~ character is 79.