mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:52:43 +00:00 
			
		
		
		
	 2a940464b8
			
		
	
	
		2a940464b8
		
	
	
	
	
		
			
			ArgsParser also does this, but we don't use that (yet) in a couple of places. Fix the behaviour manually for consistency.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			605 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			605 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/Assertions.h>
 | |
| #include <AK/Format.h>
 | |
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|     if (argc < 2) {
 | |
|         warnln("usage: fgrep <str>");
 | |
|         return 1;
 | |
|     }
 | |
|     for (;;) {
 | |
|         char buf[4096];
 | |
|         auto* str = fgets(buf, sizeof(buf), stdin);
 | |
|         if (str && strstr(str, argv[1]))
 | |
|             write(1, buf, strlen(buf));
 | |
|         if (feof(stdin))
 | |
|             return 0;
 | |
|         VERIFY(str);
 | |
|     }
 | |
|     return 0;
 | |
| }
 |