Files
School/Anul 1/Semestrul 2/OS/Labs/shell-programming/problem4.sh
T
2024-08-31 12:07:21 +03:00

10 lines
92 B
Bash

#!/bin/bash
for X in `find dir`;do
if test -L $X && test -e $X; then
echo $X
fi
done