home *** CD-ROM | disk | FTP | other *** search
- #
- # eed.sh -- edit environment variables using ied
- #
- # Richard Reiner rreiner@nexus.yorku.ca 22 Aug 90
- #
- # Released under the terms of the GNU General Public License. No warranty
- # is expressed or implied.
- #
-
-
- #
- # Put this function in your profile.sh, put ied.exe on your PATH, and
- # then you can say things like `eed PATH'
- #
- eed () {
- _tmp=`eval echo \\\"\$$1\\\"`;
- eval $1=\"`ied $_tmp`\";
- unset _tmp;
- echo '\n\n\n\n\n\n\n\n\n\n';
- }
-