압축 보기로 모든 파일과 심볼릭 링크를 나열하는 방법은 무엇입니까?

압축 보기로 모든 파일과 심볼릭 링크를 나열하는 방법은 무엇입니까?

이게 내 설정이야/tmp/test/

내가 사용한다면ls -l

-rw-r--r--  1 rubo77 rubo77    0 Okt 21 04:15 a
-rw-r--r--  1 rubo77 rubo77    2 Okt 21 04:16 b
drwxr-xr-x  2 rubo77 rubo77 4,0K Okt 21 03:58 c
lrwxrwxrwx  1 rubo77 rubo77    1 Okt 21 03:57 d -> c
lrwxrwxrwx  1 rubo77 rubo77    1 Okt 21 03:58 e -> a
lrwxrwxrwx  1 rubo77 rubo77    2 Okt 21 03:59 f -> nofile

방금 사용하는 경우: ls세부정보 없이 파일만 표시됩니다.

a b c d e f

ls -F항목에 표시기(*/=>@| 중 하나)를 추가합니다.

a  b  c/  d@  e@  f@

이 디스플레이를 어떻게 얻을 수 있습니까?

a  b  c/  d->c/  e->a  f->nofile

답변1

#!/bin/bash

    ls -l | while read response
        do
            words=`echo $response | wc -w`      #count how many words are

            case "$words" in
                9) echo $response | cut -d " " -f9 # when file is not a symlink then the ouput prints only 9 fields
                    ;;
               11) echo $response | cut -d " " -f9-11 # when file is symlink its prints 11 fields indicating the target and symbol "->"
                   ;;
            esac
        done

답변2

출력을 버퍼링하는 경우 다음으로 보낼 수 있습니다 column.

#!/bin/bash
TMP=/tmp/output-buffer
echo "">$TMP
ls -l | while read response
    do
        words=`echo $response | wc -w`

        case "$words" in
            9) echo $response | cut -d " " -f9 >>$TMP
                ;;
           11) echo $response | cut -d " " -f9-11 >>$TMP
               ;;
        esac
    done
cat $TMP | column
rm $TMP

답변3

더 많은 정보가 포함된 간단한 솔루션:

ls -hago | column

또한 흥미롭습니다(링크는 표시하지 않음).
이는 사람이 읽을 수 있는 크기의 모든 파일을 열에 표시합니다.

ls -sh

다음 명령이 작업을 수행합니다.

ls -lah | awk '{print $5, $9$10$11}' | column -t | column

또는

ls -hago --color=no| sed 's/^[^ ][^ ]* *[^ ][^ ]* \( *[^ ][^ ]*\) ............/\1/' | column

색상을 사용하는 것도 효과가 있지만 덜 정돈된 것처럼 보입니다.

if [ -t 1 ]; then color=yes; else color=no; fi
ls -hago --color="$color"| sed 's/^[^ ][^ ]* *[^ ][^ ]* \( *[^ ][^ ]*\) ............/\1/' | column

관련 정보