add a comment
[small-misc-bash] / ll-function
1 #!/bin/bash
2 # Copyright (C) 2014 Ian Kelling
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16
17 # ls -lA with enhanced output
18 # octal permissions
19 # omited acl type specifier
20 # better hard link count: number of subdirectories or number of linked files or omitted if 0
21 # better human readable size
22 # more natural date/time format for my American raised eyes
23 ll() {
24 local x y perm line binls sizePadding middle tail size \
25 max_hl_digits hardlinks initial_space hardlink_spacing
26 local max_hl_digits=0
27 local -a lines hl
28 binls=$(type -P ls)
29 local first=true
30 local aclchar=false
31 # there's no way to tell if ls uses the acl specifier unless we loop over the data twice
32 # the 11th char is either
33 # . for selinux context
34 # + for any other kind of acl
35 # or blank for no other kind of acl
36 # I don't want to see this generally.
37 while read line; do
38 if $first; then
39 first=false
40 else
41 # if we did want the first line, it would need to be stripped of non-printing chars:
42 # line=${line#$'\E[00m'}
43 lines+=("$line")
44 [[ ! ${line:10:1} == " " ]] && aclchar=true
45
46 # we also need to parse the hardlinks on the first pass, because for
47 # example ls could see the highest count as 11, and thus use 3
48 # places for hardlinks, " 10", but then we use 9 or 8 for a more
49 # useful count, and would then use 2 places. So we have to look
50 # through them all because we can't rely on the spacing that ls
51 # decided on.
52 y="${line:11}"
53 initial_space="${y%%[![:space:]]*}"
54 hardlinks="${y#$initial_space}" # remove any initial spaces
55 hardlinks="${hardlinks%%[[:space:]]*}" # remove everything beyond first word
56 # ignore the hardlinks that files/dirs always have
57 if [[ ${line:0:1} == d ]]; then
58 hardlinks=$(( hardlinks - 2 ))
59 else
60 hardlinks=$(( hardlinks - 1 ))
61 fi
62 [[ $hardlinks == 0 ]] && hardlinks=
63 if (( ${#hardlinks} > max_hl_digits )); then
64 max_hl_digits=${#hardlinks}
65 fi
66
67 hl+=($hardlinks)
68
69 fi
70 done< <( "$binls" -lAh --color=always "--time-style=+%m-%d %Y
71 %m-%d %I:%M %P" "$@" )
72
73 hardlink_spacing=$((max_hl_digits + 1))
74
75 for index in "${!lines[@]}"; do
76 line=${lines[index]}
77 hardlinks=${hl[index]}
78 if ! [[ $line == [-dscbl][-r][-w][-xsS][-r][-w][-xsS][-r][-w][-xtT]* ]]; then
79 printf "%s\n" "$line"
80 else
81 perm=0
82 for (( x=0; x<=8; x++ )); do
83 y=${line:$(( -1*x + 9 )):1}
84 [[ $y == [tT] ]] && perm=$(( perm + 512 ))
85 if [[ $y == [sS] ]]; then
86 [[ $x == 3 ]] && perm=$(( perm + 1024 ))
87 [[ $x == 6 ]] && perm=$(( perm + 2048 ))
88 fi
89 [[ $y != [-ST] ]] && perm=$(( perm + 2**x ))
90 done
91 if $aclchar; then
92 y="${line:11}"
93 else
94 y="${line:10}"
95 fi
96 middle=${y#*[^ ]* }
97 size=${middle#*[^ ]* *[^ ]* }
98 middle=${middle%"$size"}
99 tail=${size#*[^ ]* }
100 size=${size%"$tail"}
101 declare -i sizePadding="${#size} - 1"
102 size=( $size ) # remove spaces
103 size=${size/.?/}
104
105 printf "%s%4o%${hardlink_spacing}s%s%${sizePadding}s%s\n" \
106 "${line:0:1}" $perm "$hardlinks" " $middle" "$size" " $tail"
107 fi
108 done
109 }
110