Skip to content
Snippets Groups Projects
Unverified Commit 516204ba authored by Michael Aaron Murphy's avatar Michael Aaron Murphy Committed by GitHub
Browse files

Merge pull request #648 from Sag0Sag0/master

Add manpage for ion
parents bf1ef66e 13907287
No related branches found
No related tags found
No related merge requests found
setup.ion 100644 → 100755
...@@ -74,7 +74,7 @@ match "@args[1..3]" ...@@ -74,7 +74,7 @@ match "@args[1..3]"
sudo install target/release/ion ${DESTDIR}/ion sudo install target/release/ion ${DESTDIR}/ion
case "install docs" case "install docs"
echo "${c::0xF30,bold}Installing documentation with root${c::reset}" echo "${c::0xF30,bold}Installing documentation with root${c::reset}"
sudo mkdir ${SHAREDIR}/docs/ -p sudo mkdir -p ${SHAREDIR}/docs/
sudo cp manual/book/* ${SHAREDIR}/docs/ -R sudo cp manual/book/* ${SHAREDIR}/docs/ -R
case "install plugins" case "install plugins"
git clone https://github.com/mmstick/ion-plugins git clone https://github.com/mmstick/ion-plugins
......
...@@ -19,6 +19,29 @@ use std::io::ErrorKind; ...@@ -19,6 +19,29 @@ use std::io::ErrorKind;
use std::iter::{self, FromIterator}; use std::iter::{self, FromIterator};
use std::path::Path; use std::path::Path;
use std::process; use std::process;
use std::io::{stdout, Write};
use std::error::Error;
const MAN_ION: &'static str = r#"NAME
ion - ion shell
SYNOPSIS
ion [ -h | --help ] [-c] [-n] [-v]
DESCRIPTION
ion is a commandline shell created to be a faster and easier to use alternative to the
currently available shells. It is not POSIX compliant.
OPTIONS
-c
evaulates given commands instead of reading from the commandline.
-n or --no-execute
do not execute any commands, just do syntax checking.
-v or --version
prints the version, platform and revision of ion then exits.
"#;
pub(crate) trait Binary { pub(crate) trait Binary {
/// Launches the shell, parses arguments, and then diverges into one of the `execution` /// Launches the shell, parses arguments, and then diverges into one of the `execution`
...@@ -175,15 +198,22 @@ impl Binary for Shell { ...@@ -175,15 +198,22 @@ impl Binary for Shell {
let mut args = env::args().skip(1); let mut args = env::args().skip(1);
while let Some(path) = args.next() { while let Some(path) = args.next() {
match path.as_str() { match path.as_str() {
"-n" => { "-n" | "--no-execute" => {
self.flags |= NO_EXEC; self.flags |= NO_EXEC;
continue; continue;
} }
"-c" => self.execute_arguments(args), "-c" => self.execute_arguments(args),
"--version" => self.display_version(), "-v" | "--version" => self.display_version(),
"-h" | "--help" => { "-h" | "--help" => {
println!("usage: ion [--version] [-c] [-n] <command>"); let stdout = stdout();
return; let mut stdout = stdout.lock();
match stdout
.write_all(MAN_ION.as_bytes())
.and_then(|_| stdout.flush())
{
Ok(_) => return,
Err(err) => panic!("{}", err.description().to_owned()),
}
} }
_ => { _ => {
let mut array = SmallVec::from_iter(Some(path.clone().into())); let mut array = SmallVec::from_iter(Some(path.clone().into()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment