Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Josewr
  • Content: Threads
  • Order by date
  1. Josewr

    Changing corner radius on a rectangle

    Is there a way to change the corner's radius of a rectangle in PowerPoint? If I make it with straight lines and arcs of circle, even if I group the pieces when I copy the shape over the pieces do not stay connected at the ends. If I use the rectangle with rounded corners provided, the radius of...
  2. Josewr

    print every Nth line from a file

    I have a file with about 200,000 lines. They are 0.01 sec apart. I want to pick every Nth line and copy to a separate file. The time appears on column 18th. I named the AWK file "Decimate". I have tried: BEGIN { time = 61400} {{ if ( $18 > time ) print $0 >> "Output_file.asc"} time = time...
  3. Josewr

    Copy formulas from one Excel book to another

    I have two Excel books opened (not two sheets on the same book) and I try to copy the equations from cells on one book to cells on the other book and all I get is the value the cell had on the first book rather than copying the equations. I can copy the equations from the formula bar, but I...
  4. Josewr

    How do I check if a file exist in a directory?

    I am requesting, through AWK, for the operator to enter a filename: Ans = 0 BEGIN {while (Ans == 0) { {printf "Enter file Name: " getline name < "-" } {printf "This is the name you entered: " print name printf "Is that correct? 1, 0 " getline Ans < "-" print Ans }...
  5. Josewr

    modify and rename file

    I need to modify a file and rename it. Tried: awk -f modfile oldname new=newfile.fmt (Tried also: awk -f modfile oldname new="newfile.fmt") and modfile has lines such as {print " mod1 " > new} {print " mod2 " > new} The modfile works if I change the lines to read: {print " mod1 " >...
  6. Josewr

    Merge two files line-by-line

    I have two files that I want to merge. Both have the same number of lines and I want to merge them line by line. The data is tab delimited and may contain floating points as well as Boolean. They may have over 100 lines each; but the files to be merged will always have the same number of...
  7. Josewr

    Extract data from a file depending on pattern on another

    I have 2 files with equal number of rows and the value of the first column is the same on both: file1: (columns 1, 2, 3, 4) 1 5 3 4 2 2 1 3 3 1 5 8 4 7 8 6 ... file2: (columns 1, 2, 3 , 4, 5) 1 1 0 0 1 2 1 1 0 0 3 1 1 0 0 4 0 0 0 1 ... I want to create another file from file1 depending of...

Part and Inventory Search

Back
Top