2 lines
70 B
Bash
Executable file
2 lines
70 B
Bash
Executable file
#!/bin/sh
|
|
for dosya in $(find .);do shasum $dosya;done > shasum.liste
|