Эквивалент DEB для утилиты RPM 'replace'

Я часто использую очень удобную команду replace на моем сервере CentOS:

Программа замены заменяет строки на месте в файлах или на стандартном вводе.

Это не автономный пакет даже на стороне RPM, я думаю, что это часть большего пакета утилит. В любом случае, мне интересно, есть ли в Ubuntu аналог этого? Я знаю, что могу разобраться с grep и sed, но replace гораздо удобнее.

2
задан 23 May 2019 в 19:47

2 ответа

Пакеты mariadb-server-10.1, mysql-server-5.7 и percona-xtradb-cluster-server-5.7 содержат версии replace, но эти версии в основном устарели, а некоторые даже устарели.

У программного обеспечения есть веб-сайт под названием https://replace.richardlloyd.org.uk , к сожалению, ссылка для скачивания там не работает, но вы можете загрузить последнюю версию (в настоящее время 2.24) как .tar.gz ] файл из здесь : прокрутите вниз и выберите «HTTP» в последней строке. Выполните следующие шаги для установки replace из этого файла:

  1. Извлеките архив .tar.gz:

    tar xf replace-*.tar.gz
    
  2. Перейдите в каталог :

    cd replace-*/
    
  3. Для установки требуется gmake, но в Ubuntu она называется make, поэтому создайте символическую ссылку:

    sudo ln -s /usr/bin/make /usr/bin/gmake
    
  4. [ 1141] Выполните gmake:

    gmake
    
  5. Измените шебанг из tests/runtests на bash (потому что он использует let, которого sh не имеет) :

    sed '1s/sh/bash/' tests/runtests
    
  6. Запустите тесты:

    gmake test
    
  7. Установите программное обеспечение на /usr/local/bin/replace:

    sudo gmake install
    
    [ 1134]

После установки вы можете удалить символическую ссылку /usr/bin/gmake, а также каталог replace-N.NN/ и файл .tar.gz:

cd .. && rm -r replace-*/ replace-*.tar.gz && sudo rm /usr/bin/gmake
0
ответ дан 23 May 2019 в 19:47

Это альтернативный способ для replace 2.24, который не из источника использует alien для установки файла rpm, так как это приложение уже является частью Red Hat / CentOS.

Не стесняйтесь копировать и вставлять следующие строки в окне терминала.

cd /tmp
sudo apt install alien
wget https://extras.getpagespeed.com/redhat/7/x86_64/RPMS/replace2-2.24-1.el7.x86_64.rpm
sudo alien replace2-2.24-1.el7.x86_64.rpm
sudo dpkg -i replace2_2.24-2_amd64.deb 

Затем запустите новое приложение

$ replace2 
replace 2.24 (C) Richard K. Lloyd 2004 - The sane person's alternative to sed

Syntax: replace2 [-?] [-A] [-b] [-c startcol] [-d tempdir] [-e] [-f]
                 [-h] [-i] [-L] [-l linenum] [-m maxreplines] [-n] [-P] [-p]
                 [-r|R] [-s] [-T] [-t maxtimes] [-u backupsuffix] [-v]
                 [-w] [-x suffix [-x...]] [-z]
                 old_str new_str [-a old_str new_str...] [filename...]

-? displays this syntax message.
-A forces the program to assume all files are text files. Normally, the first
   256 bytes are examined to auto-determine if a file is text or binary.
   This option is deprecated and may be changed or removed in a future release.
-a allows extra pairs of strings to be replaced in order.
-b forces the program to assume all files are binary files.
-c startcol starts the string replace from column 'startcol' rather than the
   first column.
-d specifies the temporary directory for storing modified files. If not
   supplied, the default directory is $TMPDIR or, if that isn't set, /tmp.
-e makes search case-sensitive. new_str exactly replaces old_str
   with no case-adjustment to new_str.
-f forces the update of files without any .cln backup.
-h indicates that replacement pairs are binary hex data.
-i interactively prompts the user to confirm if they want strings replaced in
   next file. Specifying -i -i switches to prompting for each replacement.
-L follows soft-links specified on the command line.
-l linenum starts the string replacement from line 'linenum' rather than the
   first line.
-m maxreplines specifies the maximum number of lines in a file that should
   have string replacements.
-n displays what strings would be replaced without actually replacing them.
   It also switches on verbose mode.
-P pre-pads new_str with leading spaces if it is shorter than old_str.
-p pads new_str with trailing spaces if it is shorter than old_str.
-r or -R recurses down the current directory tree (if no filenames are given),
   replacing strings in all files found. Use -x to narrow the recursion.
-s relaxes the condition that old_str has to match a 'word' i.e. it replaces
   old_str even if it is a substring of a 'word'.
-T retains the timestamps of the original unmodified files.
-t maxtimes states the maximum number of times a string can be replaced
   in any single line of a file.
-u backupsuffix specifies the backup suffix for the unmodified file.
-v increments (switches on) verbose mode, reporting a summary of replacements
   if specified once and all replacements if specified twice (i.e. -vv).
-w recursively replaces strings in all Web-related source files in the current
   directory tree. Equivalent to "-r -x .html -x .htm -x .asp -x .js -x .css
   -x .xml -x .xhtml -x .shtml -x .jsp -x .php -x .php3 -x .php4 -x .pl".
-x suffix specifies a case-insensitive filename suffix to look for when
   recursing. Multiple -x params can be supplied and have an "or" meaning.
-z Zero-terminate any binary replacement string.

Надеюсь, это поможет!

0
ответ дан 23 May 2019 в 19:47

Другие вопросы по тегам:

Похожие вопросы: