Android SearchRecentSuggestions - предложения не отображаются при наборе в SearchView

От: Полезные sed-вкладыши от Eric Pement

# print the next-to-the-last line of a file
sed -e '$!{h;d;}' -e x              # for 1-line files, print blank line
sed -e '1{$q;}' -e '$!{h;d;}' -e x  # for 1-line files, print the line
sed -e '1{$d;}' -e '$!{h;d;}' -e x  # for 1-line files, print nothing

Вам не нужны все они, просто выберите один.

21
задан Bhavik Ambani 11 January 2014 в 12:25
поделиться