Re: echo und z.B. cat xyz in einer Zeile
> Hmmm... da fällt mir zunächst die "Advanced Bash-Scripting Guide" ein, > die es auf http://tldp.org/LDP/abs/html/ gibt. Auf deutsch weiss ich > gerade nix. Danke, das ist doch was :) -- ___ C4 Design Stefan Neuser Gutenberg Str. 29 56073 Koblenz Telefon : ++49 - (0)261 - 960 53 50 Mobil: ++49 - (0)179 - 480 98 64 E-Mail : [EMAIL PROTECTED] Internet : www.c4design.de ___
Re: echo und z.B. cat xyz in einer Zeile
* Stefan Neuser @ C4 Design <[EMAIL PROTECTED]> [060926 21:41]: > echo "Momentante Taktrate"; > cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq > in eine Zeile wenn ich diese Kommandos in ein Shellscript schreibe ? Entweder ganz normal durch die shell: echo "Momentante Taktrate" $(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq) Oder du liest einfach die manpage von echo; die allererste Option, die aufgeführt wird. Yours sincerely, Alexander -- http://learn.to/quote/ http://www.catb.org/~esr/faqs/smart-questions.html signature.asc Description: Digital signature
Re: echo und z.B. cat xyz in einer Zeile
Hallo, Stefan Neuser @ C4 Design wrote: > kurze Frage : Wie bekomme ich > > echo "Momentante Taktrate"; > cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq > > in eine Zeile wenn ich diese Kommandos in ein Shellscript schreibe ? echo -n Momentane Taktrate cat oder echo Momentane Taktrate $(cat ...) hth, Wolf -- Sysadmins' guideline (taken from an output of sudo (8): #1) Respect the privacy of others #2) Think before you type #3) With great power comes great responsibility -- Haeufig gestellte Fragen und Antworten (FAQ): http://www.de.debian.org/debian-user-german-FAQ/ Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED] mit dem Subject "unsubscribe". Probleme? Mail an [EMAIL PROTECTED] (engl)