“Bash Schreiben in Dateispezifische Zeile” Code-Antworten

Bash Schreiben in Dateispezifische Zeile

# It will write into 33 Line the word "anything" into specified file
sed -i '33i\anything' path_to_file
AttractivePenguin

Shell Schreiben Sie mehrere Zeilen in die Datei

#!/bin/bash

cat > /path/to/myfile <<EOL
write whatever youwant
with multiple lines
... 
EOL
foloinfo

BASH -Skript zum Ausgabe einer bestimmten Zeile einer Datei ausgeben

/**
* A bash script to print at stdout line_number from file_name
* @line_number: the line number you want to print
* @file_name: the file you want to read from
*/

awk '{if(NR==line_number) print $0}' file_name
Beta Scribbles

Ähnliche Antworten wie “Bash Schreiben in Dateispezifische Zeile”

Fragen ähnlich wie “Bash Schreiben in Dateispezifische Zeile”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen