Files
2024-08-31 12:07:21 +03:00

6 lines
80 B
Bash

#!/bin/bash
for X in `find dir | grep -E '\.log$'`;do
cat $X | sort > $X
done