oHead / mpr

MyPublicRepo
GNU General Public License v2.0
1 stars 0 forks source link

Support sh #10

Closed borisbabic closed 4 years ago

borisbabic commented 8 years ago

There are bashism in the current version of the code, please remove them and support sh.

possible bashism in test.sh line 6 (read without variable):
read -p "Do you want to list them all sorted by datetime (Y / n)?"
possible bashism in test.sh line 6 (read with option other than -r):
read -p "Do you want to list them all sorted by datetime (Y / n)?"
possible bashism in test.sh line 7 (alternative test command ([[ foo ]] should be [ foo ])):
if [[ "$REPLY" =~ ^[Yy]*$ ]]
possible bashism in test.sh line 13 (read without variable):
read -p "How many (last) tags do you want to keep? "
possible bashism in test.sh line 13 (read with option other than -r):
read -p "How many (last) tags do you want to keep? "
possible bashism in test.sh line 15 (alternative test command ([[ foo ]] should be [ foo ])):
if ! [[ $REPLY =~ $re ]] ; then
possible bashism in test.sh line 21 (read without variable):
read -p "Are you sure you want to delete $DEL of $MAX tags? This action is not reversable! (Y / n)?"
possible bashism in test.sh line 21 (read with option other than -r):
read -p "Are you sure you want to delete $DEL of $MAX tags? This action is not reversable! (Y / n)?"
possible bashism in test.sh line 22 (alternative test command ([[ foo ]] should be [ foo ])):
if [[ "$REPLY" =~ ^[Yy]*$ ]]
borisbabic commented 8 years ago

This issue has been open for 4 months without even a single reply! You could at least acknowledge the issue or something, or say you wont fix it! This is costing me thousands of dollars, per hour and yet you do nothing!