0

I would like to export an encrypted string to a file that already has some content.

How can i delete the content of this file and add my string?

I tried cat but that did not work. Thanks for your help!

4

3 に答える 3

0

> リダイレクト演算子を使用すると、ターゲット ファイルが消去されます。>> を使用して、ターゲット ファイルの末尾に追加します。

cat encrypted_file.txt > desired_file.txt
于 2013-09-16T16:58:58.633 に答える
0

このアプローチを試してください:

 while read user pass;do 
    echo "$user,$pass"
    # do encrypt or other operation before echo 
  done <configfile >configfile.new
于 2013-09-16T17:29:54.393 に答える
0

Bash では、このように bash を使用して文字列をファイルに簡単にリダイレクトできます

echo "This is my string" > filename

シングル>は内容を置き換え、>>ファイルの末尾に文字列を追加します。

詳細については、Redirection に関する bash のマニュアルを参照してください。

于 2013-09-16T17:00:38.450 に答える