Forslag til argumenter.
-- Look, this isn't an argument. -- Yes it is. -- No it isn't, it's just contradiction. -- No it isn't. -- Yes it is. -- It is not. -- It is. You just contradicted me. -- No I didn't.
This commit is contained in:
parent
42a4dae5fc
commit
6a4814c702
|
@ -0,0 +1,38 @@
|
|||
# Forslag til kommandolinjeargumenter og deres betydning.
|
||||
|
||||
# søk etter bøker som inneholder «computer», «programming» og «knuth» (i tittel eller forfatternavn):
|
||||
worlbehat search 'computer programming knuth'
|
||||
# vis boken med en gitt ISBN:
|
||||
worblehat show 5467237485472
|
||||
# søk etter person:
|
||||
worblehat search-person 'donald knuth'
|
||||
# vis en person:
|
||||
worblehat show dek
|
||||
# skriv ut informasjon i samme format som commit forventer:
|
||||
worblehat --commit-format show 5467237485472
|
||||
worblehat --commit-format show dek
|
||||
# samme, til en ny fil i /tmp:
|
||||
worblehat --commit-format --tmp-file show 5467237485472
|
||||
worblehat --commit-format --tmp-file show dek
|
||||
# kan vise flere ting samtidig:
|
||||
worblehat --commit-format --tmp-file show 5467237485472 432175437253 dek rms mlh
|
||||
# lagre informasjon fra en fil i databasen (filen kan inneholde både
|
||||
# nye og endrede personer og bøker):
|
||||
worblehat commit # leser fra stdin
|
||||
worblehat commit fjas.txt
|
||||
# endre en bok/person
|
||||
# (kombinerer `wh --commit-format --tmp-file show ...`,
|
||||
# `$EDITOR /tmp/...`
|
||||
# og `wh commit /tmp/...`)
|
||||
worblehat edit 5467237485472
|
||||
worblehat edit 5467237485472 432175437253 dek rms mlh
|
||||
# foreslå informasjon om nye bøker (leser ISBN-numre fra stdin, søker
|
||||
# i Google Books eller lignende, skriver info i commit-format til
|
||||
# stdout (eller tmp-fil)):
|
||||
worblehat suggest-book-data
|
||||
worblehat --tmp-file suggest-book-data
|
||||
# registrer nye bøker
|
||||
# (kombinerer `wh --tmp-file suggest-book-data`,
|
||||
# `$EDITOR /tmp/...`
|
||||
# og `wh commit /tmp/...`)
|
||||
worblehat register-books
|
Reference in New Issue