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 IamaSherpa 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: fdf
  • Order by date
  1. fdf

    file compareson

    for i in `cat filea` do grep -v $i fileb > filec mv filec fileb done
  2. fdf

    How to define special ascii characters (graphics)

    Got it. SPECIAL-NAMES. SYMBOLIC UL IS 196. . . . MOVE ALL UL TO UNDERLINE.
  3. fdf

    How to define special ascii characters (graphics)

    Should a SYMBOLIC CHARACTER in SPECIAL NAMES work? Something like this? SPECIAL NAMES. SYMBOLIC CHARACTER UL IS 195.
  4. fdf

    Numeric fields in COBOL

    In acucobol you would just treat the input as an alpha filed and move it to a mumeric field with conversion: MOVE [alpha] TO [numeric] CONVERT.
  5. fdf

    How to define special ascii characters (graphics)

    I need to define special a ascii character (ascii 195 - a centered horizontal line) which I will be moving into the print line on a laser form. How would I represent this character in working storage?
  6. fdf

    Check contents of files for a string?

    Save time with selectivity.I use a shell script which prompts for a search string, makes a list of candidate files and only searches those. # Prompt for search string variable: clear read string # If your files are in certain subdirectories, limit # your search. Make a list of...
  7. fdf

    Samba short read error on "get" binary file

    We are running Samba Version 2.2.5 on SCO Open Server V with 17 client PC's doing file transfers (put and get) back and forth. We are baffled with the following samba problem: 1. Error only occurs on 1 of 17 client machines 2. Error only occurs on "get" command; "put" and "dir"...
  8. fdf

    Samba short read error

    Still no resolutution of this problem. Any ideas at all would be appreciated.
  9. fdf

    Samba short read error

    Running Samba on SCO Open Server V with 15+ client PC's doing file transfers (put and get) back and forth. Having a problem on only one of the 15+ clients. Can perform "put" and "dir" commands with no problem. However, when we issue the "get" command below, we get a "Short read when getting...
  10. fdf

    kill the beeping beep!

    Thanks. I did this: infocmp > file vi file; [edited out "bel" entry] tic -v file viola! no bell
  11. fdf

    kill the beeping beep!

    Running SCO SV 3.2 5.0.6 on Dell Inspiron 2650 laptop ansic on console, scoansi in facetwin I'd like to turn off the "beep" when I hit the escape key in vi. Have tried: :bl:vb:bel: to /etc/termcap :bl=:vb=:bel=: to /etc/termcap trap '^G' befor vi Trying to avoid the last resort...
  12. fdf

    Need help with makefile variables

    I downloaded a public domain program, catdoc to Unix. The included Makefile.in is looking for a number of variable settings I'm unfamiliar with. I want to install executables into /usr2/bin. What should these be for SCO_SV 3.2v5.0.4? srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@...
  13. fdf

    Edit subject on stored outlook express messages?

    I receive Emails that I need to save but which have inadequate or missing subject lines. Is there an Outlook Express add on that will allow me to edit subject lines in stored email messages.
  14. fdf

    need batch xls to csv conversion for sco unix

    feherke: xls2cv in catdoc looks good. Thanks. However... I downloaded catdoc to Unix. The included Makefile.in is looking for a number of variable settings I'm unfamiliar with. I want to install executables into /usr2/bin. What should these be for SCO_SV 3.2v5.0.4? srcdir = @srcdir@...
  15. fdf

    need batch xls to csv conversion for sco unix

    I have around 1000 Excel files being maintained on a Unix drive for a startup data conversion. Worksheets contain 1-1000 records ea, 20 columns, product info by vendor. I need to convert worksheets to CSV preparatory to Cobol import to accounting system. Due to a dynamic conversion process...
  16. fdf

    need batch xls to csv conversion for sco unix

    need batch xls to csv conversion for sco unix
  17. fdf

    Unix .dbf to .txt or .csv converter

    Found DBFView. Works for me.
  18. fdf

    Real World to Peachtree

    Is your real world package cobol based? option 1: use report writer module if installed. option 2: to print to file, modify the cobol configuration file printer settings option 3: direct access to files would require real world source or odbc drivers. The data is in packed indexed files with...
  19. fdf

    fast extracting vison files

    You may need to handle this as an application level issue. Add a new key field to your data records - date change. All record updates should drop the current dateinto this field. When you extract your data, process using the date changed key, starting at the desired cut off date, thereby...

Part and Inventory Search

Back
Top