命令列說明指出
-b BOOKS, --books BOOKS
Reference list to print (as in Choose Books)
在 GitHub 程式碼中,我也找到說明指出
-b BOOKS, --books BOOKS
Space separated bookid list to set
這兩者都暗示我只需輸入書卷縮寫。但如果我這樣做
python ptxprint -b JAS 1PE -P
我會得到
res=0
而如果這樣做
python ptxprint -b JAS 1PE 2PE -P
我會得到
ptxprint: error: unrecognized arguments: 2PE
- 正確的語法是什麼?
res=0 代表什麼?(我在嘗試於新的 Linux 機器上安裝 ptxprint 時也見過這個訊息。)
The command line help says
-b BOOKS, --books BOOKS
Reference list to print (as in Choose Books)
in the github code, I also found documentation that says
-b BOOKS, --books BOOKS
Space separated bookid list to set
both of those would suggest that I just write the book abbreviations. But if I do this
python ptxprint -b JAS 1PE -P
I get
res=0
and if I do this
python ptxprint -b JAS 1PE 2PE -P
I get
ptxprint: error: unrecognized arguments: 2PE
- What is the correct syntax?
- What does
res=0 mean? (I’ve seen that while trying to install ptxprint on a new Linux machine also.)
機器翻譯自 English