Ich möchte den ausgeführten Befehl samt Ausgabe in eine Datei umleiten.
zum Beispiel: #ls >ls_out.txt
ls_out.txt sollte ungefähr so aussehen:
ls
Datei1 Datei2
Danke!
Antwort1
Sie können den Befehl „script“ verwenden: Etwa so:
localhost:test_sf user1$ ls
file1 file2 file3
localhost:test_sf user1$ script ls_out.txt #starting script command ls_out.txt will contain output
Script started, output file is ls_out.txt
bash-3.2$ ls
file1 file2 file3 ls_out.txt
bash-3.2$ exit
exit
Script done, output file is ls_out.txt
===================================================================================
localhost:test_sf user1$ cat ls_out.txt #verify the contents now.
Script started on Wed Dec 18 12:05:23 2013
bash-3.2$ ls
file1 file2 file3 ls_out.txt
bash-3.2$ exit
exit
Sie müssen lediglich den Teil „bash-3.2$ exit exit“ entfernen.
Antwort2
Ich verwende für solche Dinge eine Funktion:
echocmd() {
echo "$@"
"$@"
}
Dann
$ echocmd ls -ltr > ls_out.txt