moved scripts to dotfiles repository

changed this repositories purpose to documentation only
This commit is contained in:
scbj
2024-11-11 09:25:44 +01:00
parent b4931aeef5
commit 7204e19f8a
12 changed files with 13 additions and 20 deletions

13
linux/commands.md Normal file
View File

@@ -0,0 +1,13 @@
# Linux commands
- [Linux commands](#linux-commands)
- [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.
Usage:
```bash
find . -type f | xargs chmod 644
```