Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stuffbymax/simple-bash-text-editor
This project aims to provide a simple text editor with basic functionalities like creating, opening, editing, and saving text files.
https://github.com/stuffbymax/simple-bash-text-editor
bash bash-script help help-wanted helpful helpneeded linux linux-app linux-shell shell shell-script simple simple-project text-editor texteditor tools vim
Last synced: 7 days ago
JSON representation
This project aims to provide a simple text editor with basic functionalities like creating, opening, editing, and saving text files.
- Host: GitHub
- URL: https://github.com/stuffbymax/simple-bash-text-editor
- Owner: stuffbymax
- License: gpl-2.0
- Created: 2024-05-04T00:20:13.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T13:07:58.000Z (8 months ago)
- Last Synced: 2024-11-17T20:46:18.265Z (2 months ago)
- Topics: bash, bash-script, help, help-wanted, helpful, helpneeded, linux, linux-app, linux-shell, shell, shell-script, simple, simple-project, text-editor, texteditor, tools, vim
- Language: Shell
- Homepage: https://stuffbymax.github.io/sbte-website/
- Size: 90.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simple-text-editor
This project aims to provide a simple text editor with basic functionalities like creating, opening, editing, and saving text files.
-if plugins doesnt work move the plugins and delete the folder
-This program is a simple text editor implemented in Bash script. It provides basic functionalities like creating new files, opening existing files, editing files, saving files, searching for words, replacing words, counting words, and deleting files.
-
Here's a brief overview of its functionalities:
-
* Create a new file
* open an existing file
* Edit an existing file
* Save file
* Save As
* Search for a word
* Replace a word
* Word Count
* support plugins
* Delete a file
* Exit# Vim Version
-
This program also has a Vim version It have same functionalities as the Bash script version but it opens the Vim text editorHere's a brief overview of its functionalities:
-
* Create a new file
* pen an existing file
* Edit an existing file
* Save file
* Save As
* support plugins
* Delete a file
* Exit## if the plugins doesnt work remove the plugins folder and put the files in same directory
also dont foreget to change the code
`# Function to handle time plugin
handle_time_plugin() {
source ./plugins/time_plugin.sh
display_current_time
}``# Function to handle system info plugin
handle_system_info_plugin() {
source ./plugins/system_info_plugin.sh
display_system_info
}`to
`# Function to handle time plugin
handle_time_plugin() {
source ./time_plugin.sh
display_current_time
}``# Function to handle system info plugin
handle_system_info_plugin() {
source ./system_info_plugin.sh
display_system_info
}
`