ac216c3d77
Note: for now, this version does not use Knuth-Plass,
but everything else is in place with "greedy" breaking.
All options (should) work, and performance is nearly
on par with GNU fmt.
Squashed commit of the following local commits:
commit ebc12f5e7d19d351ada9273ec0c42d66d3730431
commit 125fdabcb2a32de161c7a8b76c3e766a40ff9f76
commit dadd62acc093b5bd4bc94ad4f8a499d2663a7097
commit e436fdaade3876e92020c61a736eba54eb5ca0cf
commit bbc4f4f6ad749753efe9b2df871ddb257f33de4b
commit 12bc4ecb0c56c0d43515a111e9129a4bfaf36531
commit 2e693553ed9af59c53ee13026d19c9f82f2973fc
commit 9b15a130148d62dd6a1d2765848ddc4daf30c649
commit ea335eb2869afcc94709345118fab3fb2e612954
Merge:
|
||
---|---|---|
base64 | ||
basename | ||
cat | ||
chroot | ||
cksum | ||
comm | ||
common | ||
cp | ||
dirname | ||
du | ||
echo | ||
env | ||
factor | ||
false | ||
fmt | ||
fold | ||
groups | ||
head | ||
hostid | ||
hostname | ||
id | ||
kill | ||
logname | ||
md5sum | ||
mkdir | ||
nl | ||
paste | ||
printenv | ||
pwd | ||
rm | ||
rmdir | ||
seq | ||
sleep | ||
sum | ||
sync | ||
tac | ||
tail | ||
tee | ||
touch | ||
tr | ||
true | ||
truncate | ||
tty | ||
uname | ||
unlink | ||
uptime | ||
users | ||
uutils | ||
wc | ||
whoami | ||
yes | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
common.mk | ||
LICENSE | ||
Makefile | ||
README.md |
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, 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'
To build the multicall binary (i.e. BusyBox-like binary):
make MULTICALL=1
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 the multicall binary:
make MULTICALL=1 install
To install every program (other than the multicall binary) with a prefix:
make PROG_PREFIX=PREFIX_GOES_HERE install
Uninstallation Instructions
To uninstall all utilities:
make uninstall
To uninstall the multicall binary:
make MULTICALL=1 uninstall
To uninstall every program (other than the multicall binary) 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:
- Open an issue named "Implement [the utility of your choice]", e.g. "Implement ls"
- State that you are working on this utility.
- Develop the utility.
- 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
- copy
- cp (not much done)
- csplit
- cut
- date
- dd
- df
- dircolors
- expand (in progress)
- expr
- fmt
- getlimits
- install
- join
- libstdbuf
- link
- ln
- ls
- mkfifo
- mknod
- mktemp
- mv
- nice
- nl
- nohup
- nproc
- numfmt
- od
- pathchk
- pinky
- pr
- printf
- ptx
- readlink
- realpath
- relpath
- remove
- runcon
- setuidgid
- shred
- shuf
- sort
- split
- stat
- stdbuf
- stty (in progress)
- 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