Hallo! Die Open in writeLaTeX
!config # Clean rule for arara # author: Paulo Cereda # requires arara 3.0+ identifier: remove name: Remove command: <arara> @{remove} arguments: - identifier: remove default: <arara> @{isNotEmpty(item, isWindows("cmd /c del", "rm -f").concat(' "').concat(getBasename(file))concat('.').concat(item).concat('"'))} gefragt 07 Jul '14, 17:48 cis |
Durch die simple Änderung von Löschen von Dateien beliebigen Namens Open in writeLaTeX
!config # Clean rule for arara # requires arara 3.0+ identifier: removex name: RemoveX command: <arara> @{removex} arguments: - identifier: removex default: <arara> @{isNotEmpty(item, isWindows("cmd /c del", "rm -f").concat(' "').concat('*')concat('.').concat(item).concat('"'))} Der Aufruf wäre dann Open in writeLaTeX
% arara: removex: {items: [ png , tmp ] }
löscht alle Dateien mit der Endung beantwortet 07 Jul '14, 18:03 cis Wobei man das ja auch als
(07 Jul '14, 18:42)
cis
|
Also ich laß die Frage mal offen für etwas der Art:
ifFalse("concat(getBasename(file))", "concat('*')")
so könnte ich es nicht einbauen.