Go to file
2014-06-29 23:57:54 +04:00
base64 always build multicall binary 2014-06-26 10:26:16 +02:00
basename always build multicall binary 2014-06-26 10:26:16 +02:00
cat always build multicall binary 2014-06-26 10:26:16 +02:00
chroot always build multicall binary 2014-06-26 10:26:16 +02:00
cksum always build multicall binary 2014-06-26 10:26:16 +02:00
comm always build multicall binary 2014-06-26 10:26:16 +02:00
common realpath implementation 2014-06-29 23:57:54 +04:00
cp always build multicall binary 2014-06-26 10:26:16 +02:00
cut Remove a couple of warnings 2014-06-28 16:57:19 -07:00
deps use latest rust-crypto for new rust master 2014-06-26 01:22:39 -04:00
dirname always build multicall binary 2014-06-26 10:26:16 +02:00
du always build multicall binary 2014-06-26 10:26:16 +02:00
echo always build multicall binary 2014-06-26 10:26:16 +02:00
env always build multicall binary 2014-06-26 10:26:16 +02:00
factor always build multicall binary 2014-06-26 10:26:16 +02:00
false always build multicall binary 2014-06-26 10:26:16 +02:00
fmt always build multicall binary 2014-06-26 10:26:16 +02:00
fold always build multicall binary 2014-06-26 10:26:16 +02:00
groups always build multicall binary 2014-06-26 10:26:16 +02:00
hashsum Use Less Memory and Fix Text Mode on Windows/UNIX 2014-06-27 00:45:48 -04:00
head always build multicall binary 2014-06-26 10:26:16 +02:00
hostid always build multicall binary 2014-06-26 10:26:16 +02:00
hostname always build multicall binary 2014-06-26 10:26:16 +02:00
id always build multicall binary 2014-06-26 10:26:16 +02:00
kill always build multicall binary 2014-06-26 10:26:16 +02:00
link always build multicall binary 2014-06-26 10:26:16 +02:00
logname always build multicall binary 2014-06-26 10:26:16 +02:00
mkdir always build multicall binary 2014-06-26 10:26:16 +02:00
mkfifo always build multicall binary 2014-06-26 10:26:16 +02:00
nl always build multicall binary 2014-06-26 10:26:16 +02:00
nohup Remove a couple of warnings 2014-06-28 16:57:19 -07:00
paste always build multicall binary 2014-06-26 10:26:16 +02:00
printenv always build multicall binary 2014-06-26 10:26:16 +02:00
pwd always build multicall binary 2014-06-26 10:26:16 +02:00
realpath realpath implementation 2014-06-29 23:57:54 +04:00
rm always build multicall binary 2014-06-26 10:26:16 +02:00
rmdir always build multicall binary 2014-06-26 10:26:16 +02:00
seq always build multicall binary 2014-06-26 10:26:16 +02:00
sleep always build multicall binary 2014-06-26 10:26:16 +02:00
sum always build multicall binary 2014-06-26 10:26:16 +02:00
sync always build multicall binary 2014-06-26 10:26:16 +02:00
tac always build multicall binary 2014-06-26 10:26:16 +02:00
tail always build multicall binary 2014-06-26 10:26:16 +02:00
tee always build multicall binary 2014-06-26 10:26:16 +02:00
touch always build multicall binary 2014-06-26 10:26:16 +02:00
tr always build multicall binary 2014-06-26 10:26:16 +02:00
true always build multicall binary 2014-06-26 10:26:16 +02:00
truncate always build multicall binary 2014-06-26 10:26:16 +02:00
tty always build multicall binary 2014-06-26 10:26:16 +02:00
uname always build multicall binary 2014-06-26 10:26:16 +02:00
unlink always build multicall binary 2014-06-26 10:26:16 +02:00
uptime always build multicall binary 2014-06-26 10:26:16 +02:00
users always build multicall binary 2014-06-26 10:26:16 +02:00
uutils realpath implementation 2014-06-29 23:57:54 +04:00
wc always build multicall binary 2014-06-26 10:26:16 +02:00
whoami always build multicall binary 2014-06-26 10:26:16 +02:00
yes always build multicall binary 2014-06-26 10:26:16 +02:00
.gitignore add Cargo.toml 2014-06-25 07:35:03 +02:00
.gitmodules Change md5sum/rust-crypto to deps/rust-crypto 2014-06-20 14:37:14 -07:00
.travis.yml always build multicall binary 2014-06-26 10:26:16 +02:00
Cargo.toml realpath implementation 2014-06-29 23:57:54 +04: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 realpath implementation 2014-06-29 23:57:54 +04:00
mkmain.rs always build multicall binary 2014-06-26 10:26:16 +02:00
README.md realpath implementation 2014-06-29 23:57:54 +04: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'

Installation Instructions

To install all available utilities:

make install

To install all but a few of the available utilities:

make DONT_INSTALL='UTILITY_1 UTILITY_2' install

To install only a few of the available utilities:

make INSTALL='UTILITY_1 UTILITY_2' install

To install every program with a prefix:

make PROG_PREFIX=PREFIX_GOES_HERE install

Uninstallation Instructions

To uninstall all utilities:

make uninstall

To uninstall every program with a set prefix:

make PROG_PREFIX=PREFIX_GOES_HERE uninstall

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. Add the reference to your utility into uutils/uutils.rs (required for multibinary).
  5. Remove utility from the to-do list on this README.
  6. Submit a pull request and close the issue.

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
  • copy
  • cp (not much done)
  • csplit
  • date
  • dd
  • df
  • dircolors
  • expand (in progress)
  • expr
  • getlimits
  • install
  • join
  • libstdbuf
  • ln
  • ls
  • mknod
  • mktemp
  • mv
  • nice
  • nproc
  • numfmt
  • od
  • pathchk
  • pinky
  • pr
  • printf
  • ptx
  • readlink
  • relpath
  • remove
  • runcon
  • setuidgid
  • shred
  • shuf
  • sort
  • split
  • stat
  • stdbuf
  • stty
  • tail (not all features implemented)
  • test
  • timeout
  • tsort
  • unexpand
  • uniq (in progress)
  • who

License

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