KonsoleKalendar/da

From KDE UserBase Wiki
Revision as of 07:02, 19 September 2010 by Claus chr (talk | contribs) (Created page with '* Hvis du ikke allerede har en kalender, så må du først lave en {{Input|1=konsolekalendar --create --file ~/.kde/share/apps/korganizer/vacation.ics}}')
Brug din kalender, når du ikke har adgang til en grafisk brugerflade

konsolekalendar er en applikation til at administrere en kalender uden en grafisk brugerflade. Den bruger normalt den kalender, som kaldes "Standardkalender", hvis du bruger KOrganizer. Det er dog muligt at lave en ny kalender, hvis du ikke har en allerede.

konsolekalender er en ren kommandolinje-applikation, og dens syntaks må først læres.

Her er en kort introduktion til at bruge konsolekalendar.


  • Hvis du ikke allerede har en kalender, så må du først lave en
konsolekalendar --create --file ~/.kde/share/apps/korganizer/vacation.ics

(This location will enable it to be used either in konsolekalendar or in korganizer.)


  • Add a calendar entry
konsolekalendar --add --date 2009-06-06 --summary "My Birthday" \
--description "Party Time"

adds your birthday to your default calendar.


  • Add a vacation
konsolekalendar --add --file vacation.ics --date 2009-08-01 \
--end-date 2009-08-07 --summary "Vacation" --description "Nobody will ever find me!"


  • Show all calendar entries
konsolekalendar --all 2>errorlog


You probably don't want to do this, if you have been using your calendar for long. However, you can specify date ranges:

konsolekalendar --view --date 2009-08-17  --end-date 2009-08-21

shows that particular work-week.


  • Maybe you only wanted to see the next entry?
konsolekalendar --next


  • Or for the week ahead?
konsolekalendar --show-next 7


  • Show your calendar file
 grep resource 


  • Edit an entry
konsolekalendar --change --uid libkcal-1652809671.172 --summary "Get my head examined" --description "I must be crazy!!"


  • Before you can delete an entry, you first need to list it:


There at the bottom is the UID of the entry.

Now you are ready to delete it -

konsolekalendar --delete --uid libkcal-1652809671.172

Warning

Beware - this is a permanent delete. You cannot recover the entry


  • Export a calendar

It is possible to export to several formats, including CSV and html.

konsolekalendar --export-type CVS current.ics


  • Import a calendar
konsolekalendar --import another.ics --file current.ics

In this case, all the entries from another.ics will be merged into current.ics.