No description
Find a file
2013-12-01 04:17:27 -05:00
cat Fix build. 2013-11-28 00:14:19 +01:00
echo Implement echo 2013-12-01 04:17:27 -05:00
env Fix build. 2013-11-28 00:14:19 +01:00
false Add the first four utils 2013-08-02 19:33:31 +02:00
printenv std::rt::io -> std::io 2013-11-13 12:17:41 +01:00
true Add the first four utils 2013-08-02 19:33:31 +02:00
wc fixed --max-line-length behaviour 2013-11-30 12:57:15 +11:00
whoami Fix build. 2013-11-28 00:14:19 +01:00
yes std::rt::io -> std::io 2013-11-13 12:17:41 +01:00
.gitignore Add the first four utils 2013-08-02 19:33:31 +02:00
.travis.yml Fix travis 2013-10-22 16:18:22 +02:00
LICENSE Add the first four utils 2013-08-02 19:33:31 +02:00
Makefile Implement echo 2013-12-01 04:17:27 -05:00
README.md Update TODOs 2013-11-30 16:48:15 +01:00

uutils coreutils

uutils is an attempt at writing universal (as in cross-platform) CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.

Why?

Many GNU, linux and other utils are pretty awesome, and obviously some effort has been spent in the past to port them to windows. However those projects are either old, abandonned, hosted on CVS, written in platform-specific C, etc.

Rust provides a good platform-agnostic way of writing systems utils that are easy to compile anywhere, and this is as good a way as any to try and learn it.

To do

  • base64
  • basename
  • chcon
  • chgrp
  • chmod
  • chown-core
  • chown
  • chroot
  • cksum
  • comm
  • copy
  • cp-hash
  • cp
  • csplit
  • cut
  • date
  • dd
  • df
  • dircolors
  • dirname
  • du
  • echo
  • expand
  • expr
  • extent-scan
  • factor
  • find-mount-point
  • fmt
  • fold
  • getlimits
  • group-list
  • groups
  • head
  • hostid
  • hostname
  • id
  • install
  • join
  • kill
  • lbracket
  • libstdbuf
  • link
  • ln
  • logname
  • ls-dir
  • ls-ls
  • ls-vdir
  • ls
  • make-prime-list
  • md5sum
  • mkdir
  • mkfifo
  • mknod
  • mktemp
  • mv
  • nice
  • nl
  • nohup
  • nproc
  • numfmt
  • od
  • operand2sig
  • paste
  • pathchk
  • pinky
  • pr
  • printf
  • prog-fprintf
  • ptx
  • pwd
  • readlink
  • realpath
  • relpath
  • remove
  • rm
  • rmdir
  • runcon
  • seq
  • setuidgid
  • shred
  • shuf
  • sleep
  • sort
  • split
  • stat
  • stdbuf
  • stty
  • sum
  • sync
  • tac-pipe
  • tac
  • tail
  • tee
  • test
  • timeout
  • touch
  • tr
  • truncate
  • tsort
  • tty
  • uname-arch
  • uname-uname
  • uname
  • unexpand
  • uniq (in progress)
  • unlink
  • uptime
  • users
  • who

License

uutils are licensed under the MIT License - see the LICENSE file for details