获取linux shell中的所有别名

时间:2017-09-06 12:55:13

标签: linux shell command-line

如何列出shell中定义的所有别名。 与下面的命令一样,列出目录中的所有文件/文件夹 我在 〜/ .bashrc 中定义了一些别名我要列出所有

命令

ls in a directory

2 个答案:

答案 0 :(得分:11)

您是否想知道是否已为特定命令设置了UNIX别名?

您可以通过在命令行上发布它来轻松找到它:

命令

alias

此命令将列出当前为您的shell帐户设置的所有别名。

答案 1 :(得分:1)

只需在终端输入<?php /** * NewsGamer Theme * * Theme by: MipThemes * http://themes.mipdesign.com * * Our portfolio: http://themeforest.net/user/mip/portfolio * Thanks for using our theme! * */ // load header get_header(); // Get Page properties $mip_current_page = new MipThemeFramework_Page(); // Update Post View MipThemeFramework_Post_Views::update_post_views($post->ID); // Load Custom post headers get_template_part( 'elements/parts/post-header-'. $mip_current_page->page_template .'' ); ?> <!-- start:post-info-bar --> <?php if ($mip_current_page->enable_post_info_bar) get_template_part( 'elements/post-info-bar' ); ?> <!-- end:post-info-bar --> <!-- start:page content --> <div id="page-content" class="<?php echo esc_attr($mip_current_page->page_template_class); ?> clearfix"> <?php //get sidebar if ( ($mip_current_page->page_sidebar_template == 'left-sidebar')&&(!wp_is_mobile()) ) get_sidebar(); ?> <!-- start:main --> <div id="main" class="main article"> <!-- start:article post --> <article id="post-<?php echo esc_attr($post->ID); ?>" <?php post_class('article-post clearfix'); ?> <?php echo MipThemeFramework_Util::get_item_scope( $mip_current_page->review_post ); ?>> <?php if (have_posts()) : // Get Template get_template_part( 'elements/'. $mip_current_page->page_template .'' ); else : // No Posts esc_html_e('No posts.', 'newsgamer'); endif; ?> </article> <!-- end:article post --> </div> <!-- end:main --> <?php //get sidebar if ( ($mip_current_page->page_sidebar_template == 'right-sidebar')||( ($mip_current_page->page_sidebar_template == 'left-sidebar')&&(wp_is_mobile()) ) ) get_sidebar(); ?> </div> <!-- end:page content --> <?php // load footer get_footer(); ?> 即可? 这应该为您提供所有活动别名。

例如:

alias