Updated User Menu Cookbook (markdown)

coderaiser 2022-07-27 19:07:22 +03:00
parent 7817ae4db0
commit 946dd2c55d

@ -39,9 +39,6 @@ Simple example of running bash scripts with help of `TerminalRun`.
```js
const isMp3 = (a) => /\.mp3$/.test(a);
export default {
const isMp3 = (a) => /\.mp3$/.test(a);
export default {
'F - Convert flac to mp3': async ({DOM, CloudCmd}) => {
const command = 'for f in *.flac; do ffmpeg -vsync 2 -i "$f" -b:a 320k "${f%flac}mp3"; done';