Diff.txt adlı bir dosyam var. Boş olup olmadığını kontrol etmek istiyorum. Böyle bir şey yaptım ama çalışamadı.
if [ -s diff.txt ]
then
touch empty.txt
rm full.txt
else
touch full.txt
rm emtpy.txt
fi
diff
çağrıyı kontrol etmek istiyorsanız , sadece dönüş değerini kontrol edin:if diff foo.txt bar.txt; then echo 'No difference'
if [ ! -s diff.txt ]; then echo "IS EMPTY";else echo "HAS SOMETHING";fi
$ cat diff.txt | hexdump -C