fgrep
Matches fixed strings in files. Equivalent to grep -F. More information: <https://www.gnu.org/software/grep/manual/grep.html>.
Install
- All systems
-
curl cmd.cat/fgrep.sh
- Debian
-
apt-get install grep
- Ubuntu
-
apt-get install grep
- Alpine
-
apk add grep
- Arch Linux
-
pacman -S grep
- Kali Linux
-
apt-get install grep
- CentOS
-
yum install grep
- Fedora
-
dnf install grep
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install grep
- OS X
-
brew install grep
- Raspbian
-
apt-get install grep
- Dockerfile
- dockerfile.run/fgrep
- Docker
-
docker run cmd.cat/fgrep fgrep
powered by Commando
Matches fixed strings in files. Equivalent to grep -F. More information: <https://www.gnu.org/software/grep/manual/grep.html>.
-
Search for an exact string in a file:
fgrep search_string path/to/file
-
Search only lines that match entirely in files:
fgrep -x search_string path/to/file1 path/to/file2
-
Count the number of lines that match the given string in a file:
fgrep -c search_string path/to/file
-
Show the line number in the file along with the line matched:
fgrep -n search_string path/to/file
-
Display all lines except those that contain the search string:
fgrep -v search_string path/to/file
-
Display filenames whose content matches the search string at least once:
fgrep -l search_string path/to/file1 path/to/file2
© tl;dr; authors and contributors