···11+MIT License
22+33+Copyright (c) 2020 Yusuf Bera Ertan
44+55+Permission is hereby granted, free of charge, to any person obtaining a copy
66+of this software and associated documentation files (the "Software"), to deal
77+in the Software without restriction, including without limitation the rights
88+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99+copies of the Software, and to permit persons to whom the Software is
1010+furnished to do so, subject to the following conditions:
1111+1212+The above copyright notice and this permission notice shall be included in all
1313+copies or substantial portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121+SOFTWARE.
+3
README.md
···11+nushell, but on the web, with a virtual environment for working in with various commands to interact with the environment, trying to emulate the nushell CLI from native OSes. faux + nu = faunu.
22+33+see [dysnomia.ptr.pet](https://dysnomia.ptr.pet) to try it out.
···11+pub mod cd;
22+pub mod fetch;
33+pub mod job;
44+pub mod job_kill;
55+pub mod job_list;
66+pub mod ls;
77+pub mod mkdir;
88+pub mod open;
99+pub mod pwd;
1010+pub mod random;
1111+pub mod rm;
1212+pub mod save;
1313+pub mod source;
1414+pub mod sys;
1515+pub mod version;
1616+1717+pub use cd::Cd;
1818+pub use fetch::Fetch;
1919+pub use job::Job;
2020+pub use job_kill::JobKill;
2121+pub use job_list::JobList;
2222+pub use ls::Ls;
2323+pub use mkdir::Mkdir;
2424+pub use open::Open;
2525+pub use pwd::Pwd;
2626+pub use random::Random;
2727+pub use rm::Rm;
2828+pub use save::Save;
2929+pub use source::Source;
3030+pub use sys::Sys;
3131+pub use version::Version;