Filebrowser-commands.conf
Aus VDR Wiki
(Unterschied zwischen Versionen)
K |
|||
| Zeile 3: | Zeile 3: | ||
{{Box Datei | $VDRCONFIG/plugins/filebrowser/commands.conf | | {{Box Datei | $VDRCONFIG/plugins/filebrowser/commands.conf | | ||
<pre> | <pre> | ||
| − | Mkdir:*:mkdir | + | Mkdir:*:mkdir %D && echo Created %D |
| − | Copy:*:cp -r | + | Copy:*:cp -r %M %D && echo Copied %M to %D |
| − | Move:*:mv | + | Move:*:mv %M %D && echo Moved %M to %D |
| − | File type:*:file | + | File type:*:file %f |
| − | Playlist:*:for p in | + | Playlist:*:for p in %M ; do echo ${p/#\/\///} ; done > /tmp/playlist && echo Created /tmp/playlist |
| − | Execute?:*: | + | Execute?:*:%f |
| − | Remove?:*:rm -rf | + | Remove?:*:rm -rf %m && echo Removed %M |
</pre> | </pre> | ||
}} | }} | ||
[[Kategorie:Konfigurationsdateien]] | [[Kategorie:Konfigurationsdateien]] | ||
Version vom 19. November 2005, 02:34 Uhr
Konfigurationsdatei des filebrowser-plugins.
Mkdir:*:mkdir %D && echo Created %D
Copy:*:cp -r %M %D && echo Copied %M to %D
Move:*:mv %M %D && echo Moved %M to %D
File type:*:file %f
Playlist:*:for p in %M ; do echo ${p/#\/\///} ; done > /tmp/playlist && echo Created /tmp/playlist
Execute?:*:%f
Remove?:*:rm -rf %m && echo Removed %M