Re: FLAC-TRIM: a bash script to trim FLAC, MP3 and M4A
Reply #9 –
#!/bin/bash
FT=flac-trim
A=need
B=no_need
echo "1) I think that I need $FT" && echo "2) I think that I DON'T need $FT"
read n
if [ $n -eq 1 ]; then
echo "I NEED $FT: I will do helpful answer about script (how it works, request for new features, ...)"
else [ $n -eq 2 ]
echo "NO NEED $FT, so I will not post more useless answer"
fi