/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1982-2012 AT&T Intellectual Property * * and is licensed under the * * Eclipse Public License, Version 1.0 * * by AT&T Intellectual Property * * * * A copy of the License is available at * * http://www.eclipse.org/org/documents/epl-v10.html * * (with md5 checksum b35adb5213ca9657e911e9befb180842) * * * * Information and Software Systems Research * * AT&T Research * * Florham Park NJ * * * * David Korn * * * ***********************************************************************/ #pragma prototyped #include "defs.h" #include #include "FEATURE/options" #include "FEATURE/dynamic" /* * This is the table of built-in aliases. These should be exported. */ const struct shtable2 shtab_aliases[] = { #if SHOPT_FS_3D "2d", NV_NOFREE, "set -f;_2d", #endif /* SHOPT_FS_3D */ "autoload", NV_NOFREE, "typeset -fu", "command", NV_NOFREE, "command ", "compound", NV_NOFREE|BLT_DCL, "typeset -C", "fc", NV_NOFREE, "hist", "float", NV_NOFREE|BLT_DCL, "typeset -lE", "functions", NV_NOFREE, "typeset -f", "hash", NV_NOFREE, "alias -t --", "history", NV_NOFREE, "hist -l", "integer", NV_NOFREE|BLT_DCL, "typeset -li", "nameref", NV_NOFREE|BLT_DCL, "typeset -n", "nohup", NV_NOFREE, "nohup ", "r", NV_NOFREE, "hist -s", "redirect", NV_NOFREE, "command exec", "source", NV_NOFREE, "command .", #ifdef SIGTSTP "stop", NV_NOFREE, "kill -s STOP", "suspend", NV_NOFREE, "kill -s STOP $$", #endif /*SIGTSTP */ "times", NV_NOFREE, "{ { time;} 2>&1;}", "type", NV_NOFREE, "whence -v", "", 0, (char*)0 };