https://github.com/lynkos/simple-shell
This program is an extension of myshell.c with pipelines + I/O redirection functionality.
https://github.com/lynkos/simple-shell
bash c command-line makefile shell
Last synced: 8 months ago
JSON representation
This program is an extension of myshell.c with pipelines + I/O redirection functionality.
- Host: GitHub
- URL: https://github.com/lynkos/simple-shell
- Owner: lynkos
- Archived: true
- Created: 2022-05-16T22:41:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T03:43:58.000Z (about 4 years ago)
- Last Synced: 2025-10-06T00:34:15.930Z (9 months ago)
- Topics: bash, c, command-line, makefile, shell
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Options
1. `>` Redirect standard output from a command to a file; if the file already exists, it will be erased and overwritten without warning
2. `>>` Append standard output from a command to a file if the file exists, else create a new one
3. `<` Redirect standard input from a file to a command
4. `|` Pass the standard output of one command to another for further processing