Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Enzo Cioppettini
ion
Commits
516204ba
Unverified
Commit
516204ba
authored
7 years ago
by
Michael Aaron Murphy
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
setup.ion
+1
-1
1 addition, 1 deletion
setup.ion
src/shell/binary/mod.rs
+34
-4
34 additions, 4 deletions
src/shell/binary/mod.rs
with
35 additions
and
5 deletions
setup.ion
100644 → 100755
+
1
−
1
View file @
516204ba
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/shell/binary/mod.rs
+
34
−
4
View file @
516204ba
...
@@ -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
()));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment