• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
  • Get Rid of Old IFS Files

    November 20, 2002 Timothy Prickett Morgan

    Hey, Ted:

    The Integrated File System (IFS) on my system is filling up and I need to clean house. Is there anything in your bag of Qshell tricks that will tell me which files in an IFS directory have not been used recently?

    — Neal

    Yes, Neal, Qshell can handle the job. However, it may not be the best solution. I will show you how to tackle this project with Qshell and then offer an alternative.

    Qshell’s ls utility lists the contents of a directory. To see all the files in a directory in chronological order–from earliest to latest date of use–use the cd command to change to the directory in question and run the following ls command:

    ls -lTtur
    

    Here is what the options mean:

    • l (letter l) — Produce a long listing. This gives more information about each file, including the last-used date.


    • T — Display full date and time information.


    • t — Sort by date and time rather than alphabetically by file name.


    • u — Include the last used date rather than the change date in the listing. You can see this same date by running the Work with Links (WRKLNK) command, using option 8 to display file attributes and paging to the second panel. This date is listed as Last access date/time.


    • r — Reverse the sort. Since the normal sort order shows the most recently used files first and least recently used files last, the r option forces ls to display results in the opposite sort order, where the least recently used files are listed first.

    If the listing is too big, you may want to list only a few of the records. You can use the head utility to see the first portion of a file:

    ls -lTtur | head -n 15
    

    The head utility displays only the first fifteen records. However, you only see fourteen file names, because the first record displays the sum of the sizes of the files in the directory:

    total: 3.012 megabytes
    

    If you don’t want that record, use the sed editor to delete it from the output stream:

    ls -lTtur | head -n 13 | sed '1d'
    

    The output will resemble the following example:

    -rw-r--r--  1 JSMITH  0     472 Apr  2 23:50:09 2002 tscript.zip
    -rwxrwx---  1 JSMITH  0       0 Apr  3 21:42:28 2002 mydata.text
    -rwxrwx---  1 JSMITH  0     608 Apr 29 10:39:10 2002 mymsgcat
    -rwx------  1 JSMITH  0     308 Jun  3 11:05:27 2002 uuu.bak
    -rw-rw-rw-  1 JSMITH  0     254 Jun 26 21:50:14 2002 rirp.zip
    -rw-rw----  1 JSMITH  0       7 Jul 24 16:42:32 2002 temp.data
    -rwx------  1 JSMITH  0     308 Jul 29 08:56:32 2002 two.abc
    -rwxrwx---  1 JSMITH  0      53 Jul 29 14:16:06 2002 two.bak
    -rw-rw-rw-  1 JSMITH  0      48 Aug 31 07:38:28 2002 tmp
    -rw-rw----  1 JSMITH  0       0 Sep  5 15:38:26 2002 grep1.out
    -rw-rw-rw-  1 JSMITH  0     283 Sep  5 15:38:26 2002 fruit.java.1
    -rwxrwx---  1 JSMITH  0      12 Sep  6 05:09:14 2002 grepex1
    

    The alternative I mentioned is the iSeries Navigator, or Operations Navigator, as it used to be named. When you open an iSeries Navigator connection, you will see a subfolder for File Systems in the navigation pane. Under that is a folder for the IFS. Navigate to and open the desired directory. You’ll see columns labeled Changed, Accessed, and Created. Clicking on these column headings will sort the list of file names by the chosen date attribute in either ascending or descending order.

    — Ted

    Sponsored By
    WORKSRIGHT SOFTWARE

    CASS Certification

    What is it? Why do you need it?

    CASS stands for “Coding Accuracy Support System.” This is a test developed by the U.S. Postal Service to determine whether ZIP Code software can accurately assign ZIP Codes to mailing addresses. CASS-certified software is intended to improve the accuracy of carrier route, 5-digit ZIP, ZIP+4, and delivery point codes.

    CASS certified means the software has passed the test. When you use CASS software to update and maintain your mailing file, then your mailing file becomes CASS certified. What does this mean to you?

    CASS certification is the first step in qualifying for postage discounts. Look at the mail you receive at home and at work; you will see that a lot of it was mailed for less than the regular 37 cent rate.

    Despite all the glitz and glamour of the Internet, email, and such, the wheels of America’s economy are lubricated by the ordinary envelope and the U.S. Postal Service.

    If your company sends out a lot of mail, there is a good chance CASS certification can cut your postage expense. There are other steps you must perform to get these discounts, but CASS is the first step.

    Your mail must be printed, sorted, and then packaged according to postal regulations. It takes some effort, but the potential savings make it worthwhile.

    Exactly what happens when you process your mailing files with CASS software? The software breaks the address down into its individual elements: state, city, street name, and so forth. Then the information is compared to the national ZIP+4 database. If a match is found, the ZIP Code, ZIP+4, delivery point, and carrier route are assigned. Also the delivery line is standardized to comply with Postal Service preferences.

    If an address can’t be matched, no action is taken. This has the positive effect of allowing you to identify addresses in your mailing files which possibly can’t be delivered, will be delayed in delivery, or at the very minimum need some minor correction to one of the address elements.

    Using CASS certified software has many side benefits. You will be able to identify addresses that are potentially undeliverable. It has been estimated that as much as 30% of all advertising mail is never delivered.

    That means the costs of postage, printing, paper, and overhead for undelivered mail are wasted. That means if you spend $100,000 on a direct mail campaign, as much as $30,000 could be completely wasted.

    CASS software provides a number of intangible benefits. With CASS certification and bar coding there is a good likelihood that that your mail will be delivered sooner. If your invoices are delivered one day sooner, you may receive payment one day sooner.

    If you CASS certify your mailing file, you can move on to the next step which is postal automation. This means applying a POSTNET bar code.

    POSTNET is that little row of tall and short bars you see on your mail. POSTNET is a special bar code used by the Postal Service to allow automatic sorting machines to work.

    It has been reported that bar code standard class (the old third class) mail gets delivered about as soon as first class, instead of the usual 2 or 3 weeks.

    The bottom line is that using CASS software will help you keep your customers’ address information in much better shape than they would be otherwise. Your mail may be delivered sooner at less cost and that means more bottom-line dollars for your company.

    If you would like more information about CASS and CASS software,
    contact your local post office or
    call WorksRight Software, Inc., at 601-856-8337.

    Are FedEx, United Parcel, and Airborne charges
    for incorrect addresses eating into your budget?

    Every bad address can result in a $5 to $10 charge. Even seemingly small addressing errors such as misspelled street names, or missing suite numbers can result in the same penalty as if the address were totally wrong.

    Our PER/ZIP4 addressing matching software will match your addresses to the national ZIP+4 postal database. Based on the match PER/ZIP4, will update your addresses to postal standards. Our sophisticated address logic can add missing directionals, correct minor misspellings, and standardize the address format. If PER/ZIP4 can’t match the address, then you know that there is likely a serious error in the address that needs to be corrected.

    PER/ZIP4 can be used in a batch mode to update an entire file or interactively to update individual address one at a time. We provide a search function so that you can search the national ZIP+4 database to verify a specific address.

    Visit our Web site www.worksright.com for more information and to order a free, no-hassle, 30-day trial. Or call WorksRight Software, Inc., at 601-856-8337.

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Tags: Tags: mgo_rc, Volume 2, Number 89 -- November 20, 2002

    Sponsored by
    Rocket Software

    Unlock the full potential of your data with Rocket Software. Our scalable solutions deliver AI-driven insights, seamless integration, and advanced compliance tools to transform your business. Discover how you can simplify data management, boost efficiency, and drive informed decisions.

    Learn more today.

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Data Structure Parameters in RPG Prototypes Reader Feedback and Insights: RPG II

    Leave a Reply Cancel reply

MGO Volume: 2 Issue: 89

This Issue Sponsored By

    Table of Contents

    • Reader Feedback and Insights: Thanks for Qshell Tips
    • V5R1 Storage Model Mismatch
    • Get Rid of Old IFS Files

    Content archive

    • The Four Hundred
    • Four Hundred Stuff
    • Four Hundred Guru

    Recent Posts

    • Meet The Next Gen Of IBMers Helping To Build IBM i
    • Looks Like IBM Is Building A Linux-Like PASE For IBM i After All
    • Will Independent IBM i Clouds Survive PowerVS?
    • Now, IBM Is Jacking Up Hardware Maintenance Prices
    • IBM i PTF Guide, Volume 27, Number 24
    • Big Blue Raises IBM i License Transfer Fees, Other Prices
    • Keep The IBM i Youth Movement Going With More Training, Better Tools
    • Remain Begins Migrating DevOps Tools To VS Code
    • IBM Readies LTO-10 Tape Drives And Libraries
    • IBM i PTF Guide, Volume 27, Number 23

    Subscribe

    To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

    Pages

    • About Us
    • Contact
    • Contributors
    • Four Hundred Monitor
    • IBM i PTF Guide
    • Media Kit
    • Subscribe

    Search

    Copyright © 2025 IT Jungle