|
| 1 | +#!/bin/bash |
| 2 | + |
| 3 | +# This file is part of 'bash-helper'. |
| 4 | +# |
| 5 | +# Copyright 2018 Sergio Lindo <sergiolindo.empresa@gmail.com> |
| 6 | +# |
| 7 | +# 'bash-helper' is free software: you can redistribute it and/or |
| 8 | +# modify it under the terms of the GNU General Public License as published by |
| 9 | +# the Free Software Foundation, either version 3 of the License, or (at your |
| 10 | +# option) any later version. |
| 11 | +# |
| 12 | +# 'bash-helper' is distributed in the hope that it will be useful, |
| 13 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
| 15 | +# Public License for more details. |
| 16 | +# You should have received a copy of the GNU General Public License along with |
| 17 | +# 'bash-helper'. If not, see <http://www.gnu.org/licenses/>. |
| 18 | + |
| 19 | +# Name: l.sh |
| 20 | +# |
| 21 | +# Synopsis: |
| 22 | +# l.sh |
| 23 | +# Example: l.sh |
| 24 | +# |
| 25 | +# Description: |
| 26 | +# Alias for bash command ls. |
| 27 | +# -C Force multi-column output; this is the default when output is to a terminal. |
| 28 | +# -F Display a slash (`/') immediately after each pathname that is a directory, |
| 29 | +# an asterisk (`*') after each that is executable, |
| 30 | +# an at sign (`@') after each symbolic link, |
| 31 | +# an equals sign (`=') after each socket, |
| 32 | +# a percent sign (`%') after each whiteout, |
| 33 | +# and a vertical bar (`|') after each that is a FIFO. |
| 34 | +# --color[=WHEN] Colorize the output; |
| 35 | +# WHEN can be 'always' (default if omitted), 'auto', or 'never'. |
| 36 | +# |
| 37 | +ls -CF --color=always |
0 commit comments