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

ターミナルにおける特殊文字の扱いの改善 #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mikecat
Copy link
Contributor

@mikecat mikecat commented Aug 12, 2022

fix #51

  • リダイレクトやパイプを表す文字の後の空白を、引数の開始と認識しなくします。
    • 例えば、 cat> z.txt を実行した時、 z.txt を入力ではなく出力として扱います。
  • リダイレクトとパイプを表す文字が両方ある場合の扱いを改善します。
    • パイプの後にリダイレクトがある場合、(どうせパイプで上書きされるので) リダイレクト用のファイルを開かないようにします。
    • リダイレクトの後にパイプがある場合、Linuxでは後のコマンドには空の標準入力が渡るようですが、今回はエラーにします。

既知の不都合

hex2bin -r | hex2bin > z.txt を実行すると、入力が受け付けられず固まります。
これは今回の変更を行う前のバージョンでも発生するため、今回の変更による不都合ではないと考えられます。

* invalidate first_arg if it is beyond redir_char or pipe_char
  * improve behavior of "cat> z.txt", for example
* improve behavior when both of redir_char and pipe_char is used
  * don't open output file (redirect) if the output is pipe
  * throw error if pipe is after redirect
@uchan-nos
Copy link
Owner

プルリク #64 がもし取り入れられれば、本件含め解決されるはずなので、ちょっと様子見する

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

Successfully merging this pull request may close these issues.

ターミナルにおける特殊文字の扱いの改善
2 participants