No description
Find a file
2014-03-18 19:15:19 +03:00
base64 Move util.rs to common 2014-02-23 22:50:34 -08:00
basename Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
cat Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
common Implement uptime 2014-03-18 09:42:44 -03:00
dirname Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
du allow uppercase variables for du 2014-03-06 10:48:32 +04:00
echo Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
env Fix master by comparing against slices, not ~ 2014-03-13 16:12:28 -07:00
false link -> crate_id, link is deprecated 2013-12-26 13:55:54 -05:00
groups id and groups share functions 2014-02-25 23:42:37 -08:00
head Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
hostname Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
id id and groups share functions 2014-02-25 23:42:37 -08:00
logname Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
mkdir Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
paste paste: make MUCH faster and fix a couple bugs 2014-02-28 10:11:24 -08:00
printenv Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
pwd Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
rm Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
rmdir Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
seq Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
sleep Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
tac tac: fix an issue with --separator 2014-02-27 21:34:43 -08:00
tee Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
true link -> crate_id, link is deprecated 2013-12-26 13:55:54 -05:00
truncate Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
tty Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
uptime Implement uptime 2014-03-18 09:42:44 -03:00
users Implement uptime 2014-03-18 09:42:44 -03:00
wc Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
whoami Fix master by removing extra crate, 2014-03-18 09:26:42 -03:00
yes Fix master by removing extra crate, 2014-03-18 09:26:42 -03: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 uptime 2014-03-18 09:42:44 -03:00
README.md expand in progress 2014-03-08 22:38:47 -08: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
  • fold
  • getlimits
  • group-list
  • hostid
  • install
  • join
  • kill
  • lbracket
  • libstdbuf
  • link
  • ln
  • ls-dir
  • ls-ls
  • ls-vdir
  • ls
  • make-prime-list
  • md5sum
  • 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
  • uname
  • unexpand
  • uniq (in progress)
  • unlink
  • uptime
  • who

License

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