Files
2022-01-08 21:40:00 +01:00

8 lines
106 B
Bash

#!/bin/bash
for fil in $(ls); do
if [ -d $fil ]; then
echo "$fil är en katalog"
fi
done