1
0
Fork 0
mirror of https://git.anardil.net/austin/coreutils.git synced 2026-06-10 15:38:29 +00:00
No description
  • Haskell 95.4%
  • Shell 4.5%
  • Makefile 0.1%
Find a file
2026-05-26 16:50:56 -07:00
Coreutils fix Wc name-shadowing warning under ghc 9.10 2026-05-26 16:22:57 -07:00
src readlink complete 2024-11-07 17:52:17 -08:00
test drop parallel on ReadlinkSpec to fix flake 2026-05-26 16:50:56 -07:00
.gitignore switch to package.yaml 2025-12-30 13:29:53 -08:00
.hspec more parallel tests 2026-03-29 10:19:49 -07:00
CLAUDE.md wc, more tests 2026-05-25 14:46:51 -07:00
LICENSE Initial commit 2018-09-02 09:39:12 -07:00
Makefile nl, uniq state refactoring 2026-03-29 11:46:05 -07:00
package.yaml switch to package.yaml 2025-12-30 13:29:53 -08:00
README.md wc, more tests 2026-05-25 14:46:51 -07:00
stack.yaml stack lts 24.24 2025-12-30 12:52:08 -08:00
todo.md addrinfo minor improvements 2023-08-22 22:33:42 -07:00

coreutils

Unix core utilities implemented in Haskell.

Goals are:

  • Idiomatic implementations
  • Fast, lazy IO
  • Feature parity with BSD utils
  • Fully tested
  • Platform independent
Utility Idiomatic Fast Lazy Tests Complete
addrinfo - - 80
awk 40
basename - -
cat
cmp 50
cut 75 90 90
dirname - -
echo - -
env - -
exit - -
false - -
head
ls - 50
mkdir - -
nl
nologin - - -
paste ✓✓
pwd - - -
random - -
readlink - -
realpath - -
rev
seq 75
sleep - -
split
sponge -
strings
sum
tac
tee
test
tr 75
truncate -
true - -
uniq
wc
which - - -
whoami - - -
yes -
Symbol Meaning
✓✓ Superior
Complete
% % Partial
- Not applicable

Usage

This project compiles to a single executable which detects which utility to call depending on the name of the binary.

make release

or

stack install --flag coreutils:release

Platform Independent

With utils on your path, you can call any utility by name, using the name as the first argument.

I leaf@elm ~> utils echo hello | utils rev
olleh
C:\Users\leaf>utils echo hello | utils rev
olleh

This is the best option for trying things out without committing your entire shell to these implementations. The testing done is mostly thorough, but there's some crazy usage of the coreutils out in the wild; like cat - - - in build scripts. Who needs to read stdin three separate times? The standard Haskell IO libraries make some sane assumptions that things like this don't happen, so this project has balance ugly workarounds with idomatic behavior. Where reasonable, idomatic is preferred. Further, this project relies on the Haskell IO libraries for platform independence - where they decided to simplify (permissions, file types), this project does also.

Linux, FreeBSD, MacOS

If you do want to commit, symlink the utilities you'd like to expose to your $PATH variable. If ~/.local/bin/ has precedence over /bin/ and /usr/bin/, these are the versions your shell will use.

cd ~/.local/bin/
ln -s utils cat
ln -s utils sleep
ln -s utils rev
...
I leaf@elm ~> which which
/home/leaf/.local/bin/which

On Windows

Symlinking doesn't appear to change the name reported by System.Environment.getProgName, so you'll need to create copies of the binary with different names.

PS C:\> cd (Split-Path -Parent (Get-Command utils.exe).Path)
PS C:\Users\leaf\AppData\Roaming\local\bin> cp utils.exe which.exe
PS C:\Users\leaf\AppData\Roaming\local\bin> cd C:\
PS C:\> which calc.exe
C:\WINDOWS\system32\calc.exe
PS C:\> which which.exe
C:\Users\leaf\AppData\Roaming\local\bin\which.exe