Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arya2004/shell-and-asm
OS Uni course
https://github.com/arya2004/shell-and-asm
Last synced: 5 days ago
JSON representation
OS Uni course
- Host: GitHub
- URL: https://github.com/arya2004/shell-and-asm
- Owner: arya2004
- License: mit
- Created: 2023-07-18T20:13:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-07T12:23:11.000Z (5 months ago)
- Last Synced: 2024-06-08T12:07:52.498Z (5 months ago)
- Language: Assembly
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# University Course Shell and Assembly Code Repository
This repository contains Shell and Assembly code examples created for a university course. The codes are designed to demonstrate various concepts and techniques related to shell scripting and assembly language programming.
## Usage
To run the Shell scripts or Assembly programs:
1. Clone the repository to your local machine:
```
git clone https://github.com/arya2004/shell-and-asm.git
```2. Navigate to the directory containing the script or program you want to execute:
```
cd shell-and-asm
```3. Run the desired script or program using the appropriate command:
For Shell scripts:
```
./script1.sh
```For Assembly programs:
```
nasm -f elf64 program1.asm -o program1.o
ld program1.o -o program1
./program1
```## Contributors
- [Your Name](https://github.com/arya2004)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.