adjusted makefile to support multifile sources

This commit is contained in:
quak
2025-02-02 16:56:49 +01:00
parent c4619ffc06
commit 7fffb463b4
8 changed files with 53 additions and 44 deletions

View File

@@ -1,9 +1,9 @@
# Linux commands
## Linux commands
- [Linux commands](#linux-commands)
- [combine commands with *xargs*](#combine-commands-with-xargs)
## combine commands with *xargs*
### combine commands with *xargs*
Some commands (e.g. `chmod`) can't handle input via pipe and require the input as arguments. `xargs` takes the standard input as list of arguments seperated by spaces or newlines and executes the given command with the input parsed to a list of arguments.