User Tools

Site Tools


linux_befehle

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
linux_befehle [2015/04/15 08:23] adminlinux_befehle [2018/10/16 19:16] admin
Line 1: Line 1:
 ====== Linux Befehle / Programme benutzen ====== ====== Linux Befehle / Programme benutzen ======
 +
 +===== Create md5 hash for each file =====
 +
 +  find . -name '*.zip' -type f ! -name \*.md5 | while read a; do sha256sum $a | awk '{print $1}' > $a.md5; done
  
 ===== grep ===== ===== grep =====
Line 125: Line 129:
 ===== Create empty files with specific size ===== ===== Create empty files with specific size =====
  
-Sometimes its useful to have different files with a certain size to test uploading tonthe web+Sometimes its useful to have different files with a certain size to test uploading to the web
  
   dd if=/dev/zero of=output.dat  bs=1024  count=10240   dd if=/dev/zero of=output.dat  bs=1024  count=10240
  
  
linux_befehle.txt · Last modified: 2018/10/16 19:19 by admin