Заменить строку1 файла1 строкой 3 файла2 - PullRequest
0 голосов
/ 23 сентября 2019

Я хотел бы заменить строку 49 файла1 на строку1 файла2.

file1

49  define( 'AUTH_KEY',         '$teste' );
50  define( 'AUTH_KEY',         '$teste' );
51  define( 'SECURE_AUTH_KEY',  '$teste' );
52  define( 'LOGGED_IN_KEY',    '$teste' );
53  define( 'NONCE_KEY',        '$teste' );
54  define( 'AUTH_SALT',        '$teste' );
55  define( 'SECURE_AUTH_SALT', '$teste' );
56  define( 'LOGGED_IN_SALT',   '$teste' );
57  define( 'NONCE_SALT',       '$teste' );

file2

49  define( 'AUTH_KEY',         '$teste' );
50  define( 'AUTH_KEY',         '$teste' );
51  define( 'SECURE_AUTH_KEY',  '$teste' );
52  define( 'LOGGED_IN_KEY',    '$teste' );
53  define( 'NONCE_KEY',        '$teste' );
54  define( 'AUTH_SALT',        '$teste' );
55  define( 'SECURE_AUTH_SALT', '$teste' );
56  define( 'LOGGED_IN_SALT',   '$teste' );
57  define( 'NONCE_SALT',       '$teste' );

Пожалуйста, кто-нибудь может мне помочь?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...