1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-16 02:01:05 +00:00
No description
Find a file
Heather 78ed54e0b5 Merge pull request #163 from Arcterus/master
Add stdin (-) support to some programs
2014-05-07 19:21:56 -07:00
base64 Update for latest Rust 2014-05-06 23:25:49 -07:00
basename Update for latest Rust 2014-05-06 23:25:49 -07:00
cat Update for latest Rust 2014-05-06 23:25:49 -07:00
common Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
cp Fix compilation for latest rustc. 2014-03-19 11:38:32 -07:00
dirname Update for latest Rust 2014-03-31 09:40:21 -07:00
du Update for latest Rust 2014-05-06 23:25:49 -07:00
echo Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
env Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
false Update for latest Rust 2014-03-31 09:40:21 -07:00
fold Add stdin (-) support to some programs 2014-05-07 16:55:53 -07:00
groups Update for latest Rust 2014-05-06 23:25:49 -07:00
head Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
hostid Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
hostname Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
id Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
kill Update for latest Rust 2014-05-06 23:25:49 -07:00
logname Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
md5sum Add stdin (-) support to some programs 2014-05-07 16:55:53 -07:00
mkdir Update for latest Rust 2014-05-06 23:25:49 -07:00
paste Add stdin (-) support to some programs 2014-05-07 16:55:53 -07:00
printenv Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
pwd Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
rm Update for latest Rust 2014-05-06 23:25:49 -07:00
rmdir Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
seq Update for latest Rust 2014-05-06 23:25:49 -07:00
sleep Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
tac Add stdin (-) support to some programs 2014-05-07 16:55:53 -07:00
tee Update for latest Rust 2014-05-06 23:25:49 -07:00
true Update for latest Rust 2014-03-31 09:40:21 -07:00
truncate Update for latest Rust 2014-05-06 23:25:49 -07:00
tty Fixed most issues caused by libc being moved from std to it's own crate. 2014-04-07 18:43:34 -04:00
uname Update for latest Rust 2014-05-06 23:25:49 -07:00
uptime Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
users Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
wc Update for latest Rust 2014-05-06 23:25:49 -07:00
whoami Fix everything but md5sum (blocked on rust-crypto) for latest Rust 2014-04-25 22:03:08 -07:00
yes Update for latest Rust 2014-05-06 23:25:49 -07:00
.gitignore Add the first four utils 2013-08-02 19:33:31 +02:00
.gitmodules Implement md5sum (closes #47) 2014-03-24 16:53:35 -07:00
.travis.yml Fix travis 2013-10-22 16:18:22 +02:00
common.mk Implement md5sum (closes #47) 2014-03-24 16:53:35 -07:00
LICENSE Add the first four utils 2013-08-02 19:33:31 +02:00
Makefile implement hostid 2014-04-03 22:31:46 +01:00
README.md implement hostid 2014-04-03 22:31:46 +01:00

uutils coreutils Build Status

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, abandoned, 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.

Build Instructions

To simply build all available utilities:

make

To build all but a few of the available utilities:

make DONT_BUILD='UTILITY_1 UTILITY_2'

To build only a few of the available utilities:

make BUILD='UTILITY_1 UTILITY_2'

Test Instructions

To simply test all available utilities:

make test

To test all but a few of the available utilities:

make DONT_TEST='UTILITY_1 UTILITY_2' test

To test only a few of the available utilities:

make TEST='UTILITY_1 UTILITY_2' test

Contribute

Contributions are very welcome, and should target Rust's master branch until Rust 1.0 is released. You may claim an item on the to-do list by following these steps:

  1. Open an issue named "Implement [the utility of your choice]", e.g. "Implement ls"
  2. State that you are working on this utility.
  3. Develop the utility.
  4. Submit a pull request and close the issue. Your pull request should include deleting the utility from the to-do list on this README.

The steps above imply that, before starting to work on a utility, you should search the issues to make sure no one else is working on it.

To do

  • chcon
  • chgrp
  • chmod
  • chown-core
  • chown
  • chroot
  • cksum
  • comm
  • copy
  • cp-hash
  • cp (some work done in dev branch)
  • csplit
  • cut
  • date
  • dd
  • df
  • dircolors
  • expand (in progress)
  • expr
  • extent-scan
  • factor
  • find-mount-point
  • fmt
  • getlimits
  • group-list
  • install
  • join
  • lbracket
  • libstdbuf
  • link
  • ln
  • ls-dir
  • ls-ls
  • ls-vdir
  • ls
  • make-prime-list
  • mkfifo
  • mknod
  • mktemp
  • mv
  • nice
  • nl
  • nohup
  • nproc
  • numfmt
  • od
  • operand2sig
  • pathchk
  • pinky
  • pr
  • printf
  • prog-fprintf
  • ptx
  • readlink
  • realpath
  • relpath
  • remove
  • runcon
  • setuidgid
  • shred
  • shuf
  • sort
  • split
  • stat
  • stdbuf
  • stty (in progress)
  • sum
  • sync
  • tac-pipe
  • tail
  • test
  • timeout
  • touch
  • tr
  • tsort
  • uname-arch
  • uname-uname
  • unexpand
  • uniq (in progress)
  • unlink
  • who

License

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