autoconf command in Linux with examples Last Updated : 27 Jan, 2022 Comments Improve Suggest changes Like Article Like Report autoconf command is used in Linux to generate configuration scripts. Generate a configuration script from a TEMPLATE-FILE if given, or from ‘configure.ac’ if present, or 'configure.in'. The output is sent to the standard output if TEMPLATE-FILE is given, otherwise, it is sent into ‘configure’. To use autoconf we must install the this on the Linux terminal as follows: sudo apt-get install autoconf Synopsis: user/bin/autoconf [OPTION] ... [TEMPLATE-FILE] Options: -h, --help: Display the help message and then exits. autoconf -h or autoconf --help -V, --version: Shows the version number and then exits. autoconf -V or autoconf --version -v, --verbose: Gives the verbosely report processing. autoconf -v filename or autoconf --verbose filename -d, --debug: Makes sure to not remove any files that are temporary. autoconf -d filename or autoconf --debug filename -o, --option: Saves the output in the FILE(stdout is default). autoconf -o filename or autoconf --option filename -w, --warnings: Reports the warnings falling in the categories autoconf -w category or autoconf --warnings category The other warning categories are: Comment More infoAdvertise with us Next Article autoconf command in Linux with examples N NishanthVaidya Follow Improve Article Tags : Linux-Unix linux-command Linux-misc-commands Similar Reads aplay command in Linux with examples aplay is a command-line audio player for ALSA(Advanced Linux Sound Architecture) sound card drivers. It supports several file formats and multiple soundcards with multiple devices. It is basically used to play audio on command-line interface. aplay is much the same as arecord only it plays instead o 2 min read aplaymidi Command in Linux with Examples aplaymidi command in Linux is used to play standard MIDI(Musical Instrument Digital Interface) files, by sending the content of a MIDI file to an ALSA(Advanced Linux Sound Architecture) MIDI port, sound renderer like timidity or a hardware MIDI device is required to play MIDI files. Syntaxaplaymidi 3 min read apropos command in Linux with Examples Linux/Unix comes with a huge number of commands and thus it become quite difficult sometimes to remember each and every command. apropos command becomes useful in such cases. apropos command helps the user when they don't remember the exact command but knows a few keywords related to the command tha 3 min read apt command in linux with examples apt provides a high-level Command Line Interface (CLI) for the APT package management system, offering a user-friendly interface intended for interactive use. It simplifies common tasks like installation, upgrades, and removal, with better defaults than more specialized tools like apt-get and apt-ca 5 min read apt-get command in Linux with Examples The command-line tool `apt-get` is the most popular package management tool used in our Debian-based Linux operating system. This article provides an overview of `apt-get` and its basic syntax. It will include the most commonly used commands, their syntax, description, and examples. It also gives an 15+ min read aptitude command in Linux with examples The aptitude command in Linux provides a user-friendly interface to interact with the machine's package manager. It functions similarly to a control panel, like in Windows, allowing you to install, upgrade, and remove packages. The command can be used in either a visual interface or directly via the 4 min read ar command in Linux with examples The 'ar' command in Linux is a versatile tool used for creating, modifying, and extracting files from archives. An archive is essentially a collection of files bundled together in a specific structure, making it easy to manage multiple files as a single entity. Each file within the archive is referr 5 min read arch command in Linux with examples The arch command is a simple yet powerful utility in Linux used to display the architecture of the system's hardware. By running this command, users can quickly determine the type of processor their system is running on, such as i386, x86_64, or arm. Knowing the architecture is crucial for installin 2 min read arp command in Linux with examples arp command manipulates the System's ARP cache. It also allows a complete dump of the ARP cache. ARP stands for Address Resolution Protocol. The primary function of this protocol is to resolve the IP address of a system to its mac address, and hence it works between level 2(Data link layer) and leve 2 min read aspell command in Linux with examples aspell command is used as a spell checker in Linux. Generally, it will scan the given files or anything from standard input then it check for misspellings. Finally, it allows the user to correct the words interactively. Spell checking is crucial when working with large documents, coding, or writing 3 min read Like