File: wrong_command.c

package info (click to toggle)
sshfs-fuse 3.7.1%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 364 kB
  • sloc: ansic: 4,792; python: 496; sh: 82; makefile: 9
file content (9 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(void) {
	fprintf(stderr, "\x1B[31m\e[1m"
		"This is not the command you are looking for.\n"
		"You probably want to run 'python3 -m pytest test/' instead"
		"\e[0m\n");
	return 1;
}