No description
Find a file
2015-12-19 15:13:49 +04:00
src Fix arm build 2015-12-19 08:53:28 +01:00
tests Add initial tests for default values 2015-12-12 16:24:48 -05:00
.busybox-config Fix more bugs to pass Busybox tests 2014-07-24 22:20:03 -07:00
.gitignore Split utility files into separate library. 2015-11-24 22:20:27 -05:00
.travis.yml travis: switch to cargo build/test 2015-11-27 22:25:16 +01:00
build.rs Refactor and simplify build for utilities. 2015-12-07 21:56:45 -05:00
Cargo.toml Refactor and simplify build for utilities. 2015-12-07 21:56:45 -05:00
CONTRIBUTING.md Move contributing section into separate file. 2015-12-03 00:21:05 -05:00
LICENSE Add the first four utils 2013-08-02 19:33:31 +02:00
Makefile make: add CARGOFLAGS 2015-12-18 23:03:57 +01:00
README.md Move contributing section into separate file. 2015-12-03 00:21:05 -05:00

uutils coreutils

Build Status 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

NOTE: This currently requires the most current nightly build.

To simply build all available utilities:

make

(on Windows use MinGW/MSYS or Cygwin make and make sure you have rustc in PATH)

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'

To build with LTO and stripping:

make ENABLE_LTO=y ENABLE_STRIP=y

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

To install the multicall binary:

make install-multicall

Uninstallation Instructions

To uninstall all utilities:

make uninstall

To uninstall every program with a set prefix:

make PROG_PREFIX=PREFIX_GOES_HERE uninstall

To uninstall the multicall binary:

make uninstall-multicall

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

To contribute to coreutils, please see CONTRIBUTING.

To do

  • chcon
  • chgrp
  • chmod (mostly done, just needs verbosity options)
  • chown
  • copy
  • cp (not much done)
  • csplit
  • date
  • dd
  • df
  • dircolors
  • expr
  • getlimits
  • install
  • join
  • ls
  • mknod
  • mktemp
  • mv (almost done, one more option)
  • numfmt
  • od (in progress, needs lots of work)
  • pathchk
  • pinky
  • pr
  • printf
  • remove
  • runcon
  • setuidgid
  • shred
  • sort (a couple of options implemented)
  • split (a couple of missing options)
  • stat
  • stty
  • tail (not all features implemented)
  • test (not all features implemented)
  • uniq (a couple of missing options)
  • who

License

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