Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルの最初の行にコマンドを追加するにはどうすればよいですか? たとえば、日付を表示するコマンドは?
ファイルを上書きせずに、ファイルの先頭に直接追加することはできません。
これは代わりに機能する場合があります。
mv file1.txt file1.txt.tmp # Move file temporarily date > file1.txt # Add your command cat file1.txt.tmp >> file1.txt # Append original content rm file1.txt.tmp # Remove temporary file