8000 GitHub - PedroDousseau/linux-shell: Linux based shell with some basic features
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

PedroDousseau/linux-shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

⭕ Linux Shell ⭕

A Shell implementation for Linux 🙂
By far not a complete one, it implements some very basic features.


Features   |    Flow

📍 Features

  • Unit commands with multiple parameters:
    • ls -la

  • Chained commands using "|":
    • ls -la | grep "foo"
    • ls -la | grep "foo" | more

  • Redirect terminal input and output to external files using "<" for default input and ">" for default output:
    • sort < foo.txt > bar.txt

  • Redirect terminal output to external files using ">>". Unlike the ">" operator, if the file already exists, it will append the output to the file content:
    • sort < foo.txt >> bar.txt

  • Mixed operators:
    • sort < foo.txt | grep "x" > bar.txt
    • sort < foo.txt | grep "x" >> bar.txt

📍 Flow

image

About

Linux based shell with some basic features

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0