Skip to content
Related Articles
Open in App
Not now

Related Articles

autoscan command in Linux with Examples

Improve Article
Save Article
Like Article
  • Last Updated : 01 Apr, 2019
Improve Article
Save Article
Like Article

autoscan command in Linux is used to generate a preliminary configure.in file. Basically, this command will check the source file in the directory tree rooted at SRCDIR, or the current directory if none is given. It also searches the source files for common portability problems, check for the incompleteness of `configure.ac‘, and creates a file called `configure.scan‘ which is used as the preliminary `configure.ac‘ file for that specific package.

Syntax:

autoscan [, OPTION/]... [, SRCDIR/]

Options:

  • -h, –help: Display the help message and then exits.
    autoscan -h or autoscan --help

  • -V, –version: Shows the version number and then exits.
    autoscan -V or autoscan --version

  • -v, –verbose: Gives the verbosely report processing.
    autoscan -v filename or autoscan --verbose filename

  • -d, –debug: Makes sure to not remove any files that are temporary.
    autoscan -d or autoscan --debug

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!