https://github.com/gabrielravier/epitech-experience-java-ls
Implementation of ls in Java, for Epitech
https://github.com/gabrielravier/epitech-experience-java-ls
Last synced: about 1 year ago
JSON representation
Implementation of ls in Java, for Epitech
- Host: GitHub
- URL: https://github.com/gabrielravier/epitech-experience-java-ls
- Owner: GabrielRavier
- Created: 2022-12-21T19:59:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T01:25:06.000Z (over 3 years ago)
- Last Synced: 2025-04-07T04:52:08.903Z (over 1 year ago)
- Language: Java
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ls in Java
This project reimplements the basics of `ls` in Java, in particular implementing usage with any number of arguments along with the -a and -l options.
## Building this project
In the `ls` directory, run:
```
mvn package
```
The project can now be run as:
```
java -cp target/ls-1.0-SNAPSHOT.jar com.GabrielRavier.ListDirectoryContents.App [normal-ls-arguments]
```