Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lecture sur stdin non intéractive #2

Closed
jzck opened this issue Feb 2, 2017 · 0 comments
Closed

lecture sur stdin non intéractive #2

jzck opened this issue Feb 2, 2017 · 0 comments
Assignees

Comments

@jzck
Copy link
Owner

jzck commented Feb 2, 2017

petit challenge @ariard : voila quelque cas d'execution qui ne marchent pas correctement mais pas tres compliqué a résoudre:

./42sh << "ls"
echo "ls" | ./42sh

probleme:dans ces deux cas l'entree standard n'est pas un terminal (isatty(0) renvoie 0) et donc ce n'est pas un shell "interactif".

  • rajouter une option a data_singleton()->opts SHELL_IS_INTERACTIVE d'après isatty(STDIN)
  • dans le main, si c'est interactif on fait la boucle avec le readline, sinon faut lire sur stdin (tu peux surement reutiliser ta fonction pour lire un fichier mais cette fois tu lis sur 0) puis executer comme un script puis quitter

Attention au cas du genre ./42sh script.sh << "ls -l; echo lol" ou je crois que le shell lis le fichier comme s'il n'y avait pas de stdin (a vérifier)

@jzck jzck closed this as completed Feb 27, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants