gedit find ~/.mozilla/firefox/ -name prefs.js -print
find ~/.mozilla/firefox/ -name prefs.js -print |while read line; do gedit "$line"
gedit `find ~/.mozilla/firefox/ -name prefs.js -print`
Kód: [Vybrat]gedit `find ~/.mozilla/firefox/ -name prefs.js -print`
Citace: jmp 28 Srpna 2013, 17:01:01Kód: [Vybrat]gedit `find ~/.mozilla/firefox/ -name prefs.js -print`Ty obrácené apostrofy to je to co jsem hledal. Díky. K+
gedit $(find ~/.mozilla/firefox/ -name prefs.js -print)
find ~/.mozilla/firefox/ -name prefs.js -exec gedit {} \+
Ovšem, pokud bychom to vzali méně prasácky, tak využijeme přímo find:Kód: [Vybrat]find ~/.mozilla/firefox/ -name prefs.js -exec gedit {} \+