All public logs

From Cheatsheet
Jump to navigationJump to search

Combined display of all available logs of Cheatsheet. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:56, 28 July 2023 Patrick talk contribs created page Linux:scripting (Created page with "Category:Cheatsheet == Common == <syntaxhighlight lang='bash'> # Execute a command within all objects in a folder. for i in *; do du -h "$i" ; done </syntaxhighlight> <syntaxhighlight lang='bash'> # man test [] Brackets are for checking whether something is true or not. if [ -d "$D" ] then else </syntaxhighlight> == SSH == === centos-create-user.sh === <syntaxhighlight lang="bash"> #!/bin/bash # Execute as root # Usage: ./centos-create-user.sh USER USER="$1" e...")