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
Container Registry
Model registry
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
redox-os
ion
Commits
f1c08a59
Unverified
Commit
f1c08a59
authored
7 years ago
by
Ian Douglas Scott
Browse files
Options
Downloads
Patches
Plain Diff
`which` builtin
parent
3dfd46c2
No related branches found
No related tags found
1 merge request
!561
`which` builtin
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/builtins/mod.rs
+38
-0
38 additions, 0 deletions
src/builtins/mod.rs
with
38 additions
and
0 deletions
src/builtins/mod.rs
+
38
−
0
View file @
f1c08a59
...
...
@@ -21,7 +21,9 @@ use self::test::test;
use
self
::
variables
::{
alias
,
drop_alias
,
drop_array
,
drop_variable
};
use
std
::
error
::
Error
;
use
std
::
env
;
use
std
::
io
::{
self
,
Write
};
use
std
::
path
::
Path
;
use
parser
::
QuoteTerminator
;
use
shell
::{
self
,
FlowLogic
,
Shell
,
ShellHistory
};
...
...
@@ -77,6 +79,7 @@ pub const BUILTINS: &'static BuiltinMap = &map!(
"ends-with"
=>
ends_with
:
"Evaluates if the supplied argument ends with a given string"
,
"contains"
=>
contains
:
"Evaluates if the supplied argument contains a given string"
,
"exists"
=>
builtin_exists
:
"Performs tests on files and text"
,
"which"
=>
builtin_which
:
"Shows the full path of commands"
,
"ion-docs"
=>
ion_docs
:
"Opens the Ion manual"
);
...
...
@@ -372,3 +375,38 @@ fn builtin_exists(args: &[&str], shell: &mut Shell) -> i32 {
}
}
}
fn
builtin_which
(
args
:
&
[
&
str
],
shell
:
&
mut
Shell
)
->
i32
{
if
args
[
1
..
]
.len
()
!=
1
{
let
stderr
=
io
::
stderr
();
let
mut
stderr
=
stderr
.lock
();
let
_
=
stderr
.write_all
(
b"which takes one argument
\n
"
);
return
BAD_ARG
;
}
let
command
=
args
[
1
];
if
let
Some
(
alias
)
=
shell
.variables.aliases
.get
(
command
)
{
println!
(
"{}: alias to {}"
,
command
,
alias
);
SUCCESS
}
else
if
shell
.builtins
.contains_key
(
command
)
{
println!
(
"{}: built-in shell command"
,
command
);
SUCCESS
}
else
if
shell
.functions
.contains_key
(
command
)
{
println!
(
"{}: function"
,
command
);
SUCCESS
}
else
{
for
path
in
env
::
var
(
"PATH"
)
.unwrap_or
(
"/bin"
.to_string
())
.split
(
sys
::
PATH_SEPARATOR
)
{
let
executable
=
Path
::
new
(
path
)
.join
(
command
);
if
executable
.is_file
()
{
println!
(
"{}"
,
executable
.display
());
return
SUCCESS
;
}
}
println!
(
"{} not found"
,
command
);
FAILURE
}
}
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