Skip to content

Instantly share code, notes, and snippets.

@jonasbjork
Created November 6, 2024 07:51
Show Gist options
  • Save jonasbjork/b7b7121a43bc5363581a2a97ee487d97 to your computer and use it in GitHub Desktop.
Save jonasbjork/b7b7121a43bc5363581a2a97ee487d97 to your computer and use it in GitHub Desktop.
demo.sh
#!/usr/bin/env bash
BOKSTAV="h"
for a in $(ls -1 ${BOKSTAV}*); do
echo ${a}
if [ $(wc -l ${a} | awk '{print $1}') -gt 10 ]; then
echo "Filen ${a} har fler än 10 rader!"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment