0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Powershellでファイルの内容を引数に取りたかった。

Posted at
あらすじ

Python勉強のために、AtCoderなる競技プログラミングサイトに登録してみた。
ブラウザ上の慣れない環境でやるのもアレだったのでVSCodeで書いたコードを
まるっとコピペするようなイメージで環境構築とかテストとかやりたかった。

ちょっと調べてサクッとできそうな感じの環境構築を終えて、以下の問題でいざテスト……
https://atcoder.jp/contests/practice/tasks/practice_1

> python answer.py < input.txt
発生場所 行:1 文字:18
+ python answer.py < input.txt
+                  ~
演算子 '<' は、今後の使用のために予約されています。
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : RedirectionNotSupported
どうやら使えないらしい。

Powershellではリダイレクトによる入力が使えないのか……
また例によってネットの海を彷徨っていたら発見

Get-Content <入力テキストファイル> | python <実行Pythonファイル>

Powershell難しいなぁ……Linuxみたいにもうちょっと直感的(?)に使いたいお……

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?