Files
School/Anul 1/Semestrul 2/OS/Labs/shell-programming/problem3.sh
T
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