Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Wednesday, 19-Feb-2025 15:58:40 JST 翠星石
@John @a An alias won't work - you'll need to add a bash function; cat() { ffmpeg -v quiet -f data -i "$1" -map 0 -f data - ; }
Unfortunately, such trivial function doesn't operate as a concatenate program, to achieve that, you need to add a bash loop as below;
cat() { for argument ; do ffmpeg -v quiet -f data -i "$argument" -map 0 -f data - ; done ; }