uu_rm 0.8.0

rm ~ (uutils) remove PATHNAME
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.

// Platform-specific implementations for the rm utility

#[cfg(all(unix, not(target_os = "redox")))]
pub mod unix;

#[cfg(all(unix, not(target_os = "redox")))]
pub use unix::*;