descriptionSimple shell made in C++11
homepage URLhttps://github.com/vrmiguel/minishell-2
repository URLhttps://github.com/vrmiguel/minishell-2.git
ownervrmiguel99@gmail.com
last changeFri, 5 Jun 2020 00:24:08 +0000 (4 21:24 -0300)
last refreshSat, 27 Apr 2024 09:39:32 +0000 (27 11:39 +0200)
content tags
add:
README.md

minishell-2 Codacy Badge License: MIT Semaphore Build

Unix shell written in pure C++11.

Building

With QMake

Run qmake && make on the root folder.

Without QMake

Run g++ -c -pipe -std=gnu++11 -Wall -W -fPIC -I. Sources/main.cpp Sources/opsys.cpp Sources/input.cpp followed by g++ -Wl,-O1 -o minishell-2 input.o main.o opsys.o

shortlog
2020-06-05 Vinícius R... Merge remote-tracking branch 'origin/master'master
2020-06-05 Vinícius R... Small change to show_history
2020-06-04 V. R. MiguelAdd Codacy badge
2020-06-04 Vinícius R... Merge remote-tracking branch 'origin/master'
2020-06-04 Vinícius R... Hopefully make Codacy stop complaining
2020-06-04 V. R. MiguelAdd license and Semaphore build badges
2020-06-04 V. R. MiguelUpdate Semaphore configuration
2020-06-04 Vinícius R... Small changes
2020-06-04 V. R. MiguelUpdate README.md
2020-06-04 Vinícius R... Add MIT license notice
2020-06-04 Vinícius R... Add history
2020-06-04 Vinícius R... Piped commands work now
2020-06-04 Vinícius R... Piped commands (almost) working
2020-06-03 Vinícius R... Internal implementation of cd
2020-06-03 Vinícius R... Less idiotic includes
2020-06-03 Vinícius R... quit command and verbosity
...
heads
3 years ago master
3 years ago set-up-semaphore