-
-
Save kirbysayshi/4678439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i=0; FILES=$(ls -tr ./); for FILE in $FILES; do i=$(($i + 1)); if [$(($i % 2)) = 0]; then echo"$i$FILE"; fi; done; | |
outputs: | |
==> | |
-bash: [0: command not found | |
-bash: [1: command not found | |
-bash: [0: command not found | |
... | |
... | |
... | |
<== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
i=0 | |
FILES=$(ls -tr ./) | |
for FILE in $FILES; do | |
i=$(($i + 1)) | |
isEven=$(($i % 2)) | |
if [ "$isEven" -eq 0 ]; then | |
echo "$i$FILE" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment