Search Results

Search: Posts Made By: dll_fpga
6
1,012
Posted By Chubler_XL
Change this: while($y=<FH1>) { print...
Change this:
while($y=<FH1>)
{
print FH2"$x;\n"
}

to this:
while($y=<FH1>)
{
print FH2"$y;\n"
}
6
1,012
Posted By balajesuri
Would'nt this suffice??? sed '1,/HOLD/d' file
Would'nt this suffice???
sed '1,/HOLD/d' file
34,104
Posted By methyl
As another poster suggests, take a look at your...
As another poster suggests, take a look at your ftp account on the Windows box and find out where that account's ftp home directory resides. That is where you will find your file if it was...
34,104
Posted By PikK45
Are you running this from windows PC or from the...
Are you running this from windows PC or from the unix box?

If from unix box, why are u using get? :confused:
34,104
Posted By PikK45
@dll_fgpa did you use USER "mahesva" ...
@dll_fgpa

did you use
USER "mahesva"
PASS "mahesva123"
or
quote USER "mahesva"
quote PASS "mahesva123"

I think the second case will work as expected!
34,104
Posted By PikK45
You can just google or search in the forum on...
You can just google or search in the forum on "Automating FTP" / "Automate FTP".

There are tonnes of discussions on this topic :)
34,104
Posted By PikK45
May be you have issues here: ...
May be you have issues here:

#!/usr/bin/ksh
ftp -v -n "10.29.45.11" << cmd
user "mahesva" "mahesva123"
get rtl.tar
quit
cmd

Rather try using this, when FTPing from UNIX to Windows
...
1,872
Posted By expert
you want to Zip a directory or a files inside a...
you want to Zip a directory or a files inside a directory ?
1,181
Posted By birei
First, does that option fit your needs? ...
First, does that option fit your needs?

Second, in a GUI version of Vim you can move the bar between both windows with your mouse. For a short command, add it to your vimrc file or use a mapping...
1,806
Posted By itkamaraj
$ awk...
$ awk '/Path.*good/{a=1}!a{line=line"\n"$0}/VIOL/{if(a){print line"\n"$0}}' input.txt
Startpoint: ff1
(rising edge-triggered flip-flop clocked by CLK3)
Endpoint: ff4
(rising clock gating-check...
2,650
Posted By birei
First point works for me, and to search without...
First point works for me, and to search without going deep into subdirectories add option -maxdepth 1
2,650
Posted By birei
Hi dll_fpga, Does this work for you? $...
Hi dll_fpga,

Does this work for you?

$ find . -type f | vim -
2,263
Posted By Scrutinizer
Change "infile" to the path/name of the actual...
Change "infile" to the path/name of the actual file. Then just try copy-pasting the script on the command line

Perhaps you are more comfortable with the single-line form:
awk -F'[()]' '/clock...
2,263
Posted By Scrutinizer
Try: awk -F'[()]' ' /clock network...
Try:

awk -F'[()]' '
/clock network delay/{
f=1
nr_of_reports++
getline
}
/data arrival time/{
f=0
}
f{
A[$2]++
}
END{
for(i in A)...
Showing results 1 to 14 of 14

 
All times are GMT -4. The time now is 01:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy