[CMD] command to fix the problem raised at ubuntu hour.
1 message · started by Devi Garcia on Feb 12, 2026
[CMD] command to fix the problem raised at ubuntu hour.
From Devi Garcia · Feb 12, 2026
Quoted reply
(1 line)
find /path/to/directory -type f -printf "%f\n" \| awk -F. 'NF>1{print tolower($NF), $0} NF==1{print "noext", $0}' \| sort -k1,1 -k2,2 \| cut -d' ' -f2- \| column -c 120 \> output.txt
find /path/to/directory -type f -printf "%f\n" \
| awk -F. 'NF>1{print tolower($NF), $0} NF==1{print "noext", $0}' \
| sort -k1,1 -k2,2 \
| cut -d' ' -f2- \
| column -c 120 \
output.txt