GNU core utilities
GNU 운영체제의 기본 유틸리티 모음
포함된 유틸리티 명령들
Decoded: GNU coreutils 문서에 의하면 GNU core utilities에는 다음 명령들이 포함되어 있다.
- arch 명령어, base64, basename 명령어, cat, chcon
- chgrp, chmod 명령어, chown, chroot, cksum
- comm, cp, csplit 명령어, cut 명령어, date 명령어
- dd, df 명령어, dir, dircolors, dirname
- du 명령어, echo 명령어, env, expand, expr
- factor, false, fmt, fold, groups
- head, hostid, hostname, id, install
- join, kill, link, ln 명령어, logname
- ls 명령어, md5sum, mkdir, mkfifo, mknod
- mktemp, mv 명령어, nice, nl, nohup
- nproc, numfmt, od, paste, pathchk
- pinky, pr, printenv, printf, ptx
- pwd, readlink, realpath, rm, rmdir
- runcon, seq, shred, shuf, sleep
- sort 명령어, split, stat, stdbuf, stty
- sum, tac, tail 명령어, tee 명령어, test
- timeout, touch, tr 명령어, true, truncate
- tsort, tty, uname 명령어, unexpand, uniq 명령어
- unlink, uptime 명령어, users, vdir, wc 명령어
- who, whoami, yes 명령어
macOS에서
macOS에서는 Homebrew를 사용해 간단하게 설치할 수 있다.
brew install coreutils
설치한 명령들은 앞에 g
를 붙이면 사용할 수 있다.
예를 들어 다음과 같다.
ls
:gls
cat
:gcat
cp
:gcp
mv
:gmv
- …