From d1777d7afdd99a9d60aa5f5b8e1fe48bd1d38d50 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 28 Dec 2015 21:34:11 +0100 Subject: [PATCH] Add extfs and unmount suggestions to command-not-found(1). --- utils/command-not-found.cpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/utils/command-not-found.cpp b/utils/command-not-found.cpp index 4620b136..e5b96ffc 100644 --- a/utils/command-not-found.cpp +++ b/utils/command-not-found.cpp @@ -1,6 +1,6 @@ /******************************************************************************* - Copyright(C) Jonas 'Sortie' Termansen 2013. + Copyright(C) Jonas 'Sortie' Termansen 2013, 2015. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -37,6 +37,18 @@ void suggest_pager(const char* filename) fprintf(stderr, " Command 'pager' from package 'utils'\n"); } +void suggest_extfs(const char* filename) +{ + fprintf(stderr, "No command '%s' found, did you mean:\n", filename); + fprintf(stderr, " Command 'extfs' from package 'ext'\n"); +} + +void suggest_unmount(const char* filename) +{ + fprintf(stderr, "No command '%s' found, did you mean:\n", filename); + fprintf(stderr, " Command 'unmount' from package 'utils'\n"); +} + int main(int argc, char* argv[]) { const char* filename = 2 <= argc ? argv[1] : argv[0]; @@ -49,6 +61,10 @@ int main(int argc, char* argv[]) else if ( !strcmp(filename, "less") || !strcmp(filename, "more") ) suggest_pager(filename); + else if ( !strcmp(filename, "mount") ) + suggest_extfs(filename); + else if ( !strcmp(filename, "umount") ) + suggest_unmount(filename); fprintf(stderr, "%s: command not found\n", filename); return 127; }