숫자를 수천으로 그룹화하여 출력 ls -l size 필드?


13

ls -l로 숫자 필드를 수천으로 그룹화하여 크기 필드를 출력 할 수 있습니까? 그렇다면 어떻게?

예를 들어 :

$ ls -l
-rw-rw---- 1 dahl dahl 43,210,052 2012-01-01 21:52 test.py

(크기가 쉼표로되어 있음).

어쩌면 (en_US.utf8)을 사용하는 로케일 내의 LC_NUMERIC 설정을 수정하여?

저는 Kubuntu 12.04 LTS에 있습니다.


test.py는 얼마나 큽니까? 바이트, 킬로바이트, 메가 바이트 등을 원하십니까?
Mikel

답변:


20

블록 크기는 - GNU로 coreutils는 말한다

블록 크기 사양 앞에 '가 붙으면 출력 크기가 수천 구분 기호로 표시됩니다. (블록 크기 만 지정하는 것만으로는 충분하지 않습니다.)

그래서 당신이 원하는 것에 따라 시도해 볼 수 있습니다.

BLOCK_SIZE="'1" ls -l
BLOCK_SIZE="'1kB" ls -l

또는

ls -l --block-size="'1"
ls -l --block-size="'1kB"

당신은 그것을 사용하여 영구적으로 만들 수 있습니다

export BLOCK_SIZE="'1"
export BLOCK_SIZE="'1kB"

또는

alias ls="ls --block-size=\"'1\""
alias ls="ls --block-size=\"'1kB\""

나는 Macos Sierra에서 다음과 같은 결과를 얻습니다.ls: illegal option -- - usage: ls [-ABCFGHLOPRSTUWabcdefghiklmnopqrstuwx1] [file ...]
Matthew

매트, 질문은 원래 쿠분투 리눅스에 관한 것이 었습니다. FreeBSD는 -,Mac OS에서는 보이지 않습니다.
Mikel

참고 : 종종 LC_NUMERIC=en_USeqLC_NUMERIC=en_US ls -l --block-size="'1"
Al Bundy

0

AST 오픈의와 ls(도 ls의 내장 ksh93AST 개방의 일환으로 구축하는 경우) :

$ ls -rSZ "%(mode)s %3(nlink)u %-8(uid)s %-8(gid)s %8(device:case::%'(size)u:*:%(device)s)s %(mtime)s %(name)s%(linkop:case:?*: %(linkop)s %(linkpath)s)s"
[...]
-rwxrwxr-x   1 chazelas chazelas 2,701,278 Apr 27  2016 nmake
-rwxrwxr-x   2 chazelas chazelas 4,515,954 Apr 27  2016 ksh
-rwxrwxr-x   2 chazelas chazelas 4,515,954 Apr 27  2016 bash
-rwxrwxr-x   1 chazelas chazelas 4,542,177 Apr 27  2016 shcomp
-rwxrwxr-x   1 chazelas chazelas 6,830,418 Apr 27  2016 tksh

이 형식은 일반적으로 사용 ls -l되지만 천 단위 구분 기호를 표시하도록 %(size)u변경되었습니다 %'(size)u.

더 읽기 쉬운 :

LONG_FORMAT_WITH_THOUSAND_SEP="\
%(mode)s \
%3(nlink)u \
%-8(uid)s \
%-8(gid)s \
%8(device:case::%'(size)u:*:%(device)s)s \
%(mtime)s \
%(name)s\
%(linkop:case:?*: %(linkop)s %(linkpath)s)s"

ls -rSZ "$LONG_FORMAT_WITH_THOUSAND_SEP"

-3

매뉴얼 페이지에서

--block-size=SIZE
          scale sizes by SIZE before printing them.  E.g., `--block-size=M'   
          prints sizes in units of 1,048,576 bytes.  See SIZE format below.

_ 여기에 ls의 man 페이지가 있습니다. man은 터미널에서 가장 유용한 친구 유형 "man man"이 얼마나 유용한 지 기억하십시오.

    ls

List information about files.

Syntax
      ls [Options]... [File]...

Key
      Sort entries alphabetically if none of -cftuSUX nor --sort.

  -a, --all                  Do not hide entries starting with .

  -A, --almost-all           Do not list implied . and ..

  -b, --escape               Print octal escapes for nongraphic characters

      --block-size=SIZE      Use SIZE-byte blocks

  -B, --ignore-backups       Do not list implied entries ending with ~

  -c                         Sort by change time; with -l: show ctime

  -C                         List entries by columns

      --color[=WHEN]         Control whether color is used to distinguish file
                             types. WHEN may be `never', `always', or `auto'

  -d, --directory            List directory entries instead of contents

  -D, --dired                Generate output designed for Emacs' dired mode

  -f                         Do not sort, enable -aU, disable -lst

  -F, --classify             Append indicator (one of */=@|) to entries

      --format=WORD          Across -x, commas -m, horizontal -x, long -l,
                             single-column -1, verbose -l, vertical -C

      --full-time            List both full date and full time

  -g                         (ignored)

  -G, --no-group             Inhibit display of group information

  -h, --human-readable       Print sizes in human readable format (e.g., 1K 234M 2G)
  -H, --si                   Likewise, but use powers of 1000 not 1024

      --indicator-style=WORD Append indicator with style WORD to entry names:
                             none (default), classify (-F), file-type (-p)

  -i, --inode                Print index number of each file

  -I, --ignore=PATTERN       Do not list implied entries matching shell PATTERN

  -k, --kilobytes            Like --block-size=1024

  -l                         Use a long listing format

  -L, --dereference          List entries pointed to by symbolic links

  -m                         Fill width with a comma separated list of entries

  -n, --numeric-uid-gid      List numeric UIDs and GIDs instead of names

  -N, --literal              Print raw entry names (don't treat e.g. control
                             characters specially)

  -o                         Use long listing format without group info

  -p, --file-type            Append indicator (one of /=@|) to entries

  -q, --hide-control-chars   Print ? instead of non graphic characters

      --show-control-chars   Show non graphic characters as-is (default)

  -Q, --quote-name           Enclose entry names in double quotes
      --quoting-style=WORD   Use quoting style WORD for entry names:
                             literal, shell, shell-always, c, escape

  -r, --reverse              Reverse order while sorting

  -R, --recursive            List subdirectories recursively

  -s, --size                 Print size of each file, in blocks

  -S                         Sort by file size

      --sort=WORD            time -t, version -v, status -c 
                             size -S, extension -X, none -U
                             atime -u, access -u, use -u

      --time=WORD            Show time as WORD instead of modification time:
                               atime, access, use, ctime or status; 
                               also use this as a sort key if --sort=time

  -t                         sort by modification time

  -T, --tabsize=COLS         assume tab stops at each COLS instead of 8

  -u                         sort by last access time; with -l: show atime

  -U                         do not sort; list entries in directory order

  -v                         sort by version

  -w, --width=COLS           assume screen width instead of current value

  -x                         list entries by lines instead of by columns

  -X                         sort alphabetically by entry extension

  -1                         list one file per line

      --help                 display help and exit

      --version              output version information and exit
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.