diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-07-27 14:44:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-07-27 14:44:28 +0200 |
commit | 138fe4119881577249be7362b3ea3b1125837902 (patch) | |
tree | 4261892d5827c946573b1093d32176978da62131 /gnu/system | |
parent | a812aff99c35aab4044be8332d8ef973f4be4d79 (diff) | |
download | patches-138fe4119881577249be7362b3ea3b1125837902.tar patches-138fe4119881577249be7362b3ea3b1125837902.tar.gz |
system: Add 'grep --color' alias in '.bash_profile' skeleton.
* gnu/system/shadow.scm (default-skeletons)[profile]: Add 'grep' alias.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/shadow.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index 4e6f645e93..236807c70a 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -174,7 +174,8 @@ else PS1='\\u@\\h \\w\\$ ' fi alias ls='ls -p --color' -alias ll='ls -l'\n")) +alias ll='ls -l' +alias grep='grep --color'\n")) (zlogin (plain-file "zlogin" "\ # Honor system-wide environment variables source /etc/profile\n")) |