|
|
|
|
|
by pathikrit
1250 days ago
|
|
Why not respond with both X and Y? e.g. for the last 3 character thing, here would be an appropriate response: To get the last 3 characters, do `echo ${foo: -3}`. Are you trying to get the file extension though? What if the extension is not 3 characters e.g. `foo.jpeg`? You then want to do `${foo##*.}` |
|