home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / SYSTEM / IED_EED.ZIP / EED.SH next >
Encoding:
Text File  |  1990-08-22  |  461 b   |  21 lines

  1. #
  2. # eed.sh -- edit environment variables using ied
  3. #
  4. # Richard Reiner  rreiner@nexus.yorku.ca  22 Aug 90
  5. #
  6. # Released under the terms of the GNU General Public License.  No warranty
  7. # is expressed or implied.
  8. #
  9.  
  10.  
  11. #
  12. # Put this function in your profile.sh, put ied.exe on your PATH, and
  13. # then you can say things like `eed PATH'
  14. #
  15. eed () {
  16.     _tmp=`eval echo \\\"\$$1\\\"`;
  17.     eval $1=\"`ied $_tmp`\";
  18.     unset _tmp;
  19.     echo '\n\n\n\n\n\n\n\n\n\n';
  20. }
  21.