Questions tagged [info]

GNU info is a software utility which forms a hypertextual, multipage documentation and help viewer working on a command line interface, useful when there is no GUI available.

GNU info is a software utility which forms a hypertextual, multipage documentation and help viewer working on a command line interface, useful when there is no GUI available. It allows software developers to provide more detail - and more sensible sectioning - than a manual page.

Here are some useful keystrokes for GNU info.

149 questions
32
votes
2 answers

Python logging typeerror

Could you please help me, whats wrong. import logging if (__name__ == "__main__"): logging.basicConfig(format='[%(asctime)s] %(levelname)s::%(module)s::%(funcName)s() %(message)s', level=logging.DEBUG) logging.INFO("test") And I can't…
FrUh
  • 545
  • 1
  • 4
  • 7
22
votes
4 answers

How to read Linux man pages?

Every time I find some command confusing, I'd reach out for man pages. Sometimes I get what I want with it, but mostly it confused me even more. I understand that a man page is divided into parts: NAME, SYNOPSIS, DESCRIPTION, OPTIONS, EXPRESSIONS,…
cizixs
  • 12,931
  • 6
  • 48
  • 60
16
votes
3 answers

MediaInfo CLI (Command Line Interface) Syntax Teaching Me Once & For All

Dear Friends at Stack Overflow, There is a pattern of questioning here that I noticed in many categories, but for the sake of this topic I'll talk about MediaInfo CLI. The same type of questions keep re-occurring because the source problem is NOT…
12
votes
1 answer

Pandas info not showing all columns and datatypes

I am have imported a csv file onto my Jupyter notebook and trying to obtain all the columns names and datatypes using the info() function. However, I get the following image. Any idea how to resolve it? I can't view all the columns and datatypes,…
12
votes
2 answers

Android Get Processor Model

I want to get Processor Model similar to DU Booster. CPU model contains ARM processor version and revision. For Example: ARMv7 Processor rev 3 (v7l) I have tried this System.getProperty("os.arch") which returns only architecture and String[] args =…
Rakesh Yadav
  • 1,966
  • 2
  • 21
  • 35
6
votes
3 answers

Get file size, creation date and modification date in Python

I need to get file info (path, size, dates, etc) and save it in a txt but I don't know where or how to do it. This is what I have: ruta = "FolderPath" os.listdir(path=ruta) miArchivo = open("TxtPath","w") def getListOfFiles(ruta): listOfFile =…
Nira
  • 197
  • 1
  • 1
  • 12
6
votes
1 answer

In gdb, what's the difference between 'where', 'bt', and 'i frame' commands?

Seems they all print out information about what's the current call frame is, and 'i frame' seems to give a bit more information. But I don't really see the necessity of 'where' command. Is there anything that 'where' command can do while 'bt' or 'i…
Hind Forsum
  • 9,717
  • 13
  • 63
  • 119
6
votes
2 answers

Are there any man pages that summarize bash scripting?

I have a computer science test coming up on basic bash scripting. We work on offline-only linux machines (pretty much stock Fedora) that have all the typical man/info pages installed. That being said, memorizing things like bash if statement tests…
Alexander
  • 59,041
  • 12
  • 98
  • 151
5
votes
2 answers

info command and man pages

Fedora 19 {though I doubt that's relevant] If I invoke the info command for a topic that doesn't actually have an info node, but does have a man page, info will apparently create a node named (*manpages*) from the man page -- on the fly. I…
RoUS
  • 1,888
  • 2
  • 14
  • 29
5
votes
1 answer

In emacs who is setting Info-directory-list when including packages?

I recently switched to the use of emacs' package manager packages. Since then, some emacs path variables get set beyond what I do in my .emacs file: Both load-path and Info-directory-list get perpended with stuff from the packages. But I don't…
halloleo
  • 9,216
  • 13
  • 64
  • 122
4
votes
1 answer

info files in subdirectory is not recognized in emacs

I installed an additional info file using install-info /usr/share/info/asymptote/asymptote.info.gz /usr/share/info/dir it is perfectly visible by info command from the command line, i.e. info asymptote return content of asymptote/asymptote.info.gz…
zeliboba7
  • 335
  • 1
  • 10
3
votes
2 answers

YouTube get_video_info throws restriction error

I have created (yes another) YouTube Player-Module for joomla! In the Module Backend i used the Code from this answer to display the Videotitle. Unfortunately get_video_info returns for the most video ID's just the embedding forbidden text like :…
Marco
  • 473
  • 5
  • 21
3
votes
2 answers

should i use angular-cli for projects

This question might already be asked but i am not able to find a good answer to this. i am new to angular 2 and i saw there is great "angular-cli" project which offer many features out of the box and use best practices. but my main concern is…
muneeb
  • 83
  • 9
3
votes
1 answer

Auto Redirect on sub domain According to Device

i Want to check on loading time (my website open on which device.). Now My requirement If User open site with PC that case Redirect on (www.website.com). If User open site with Mobile that case Redirect on subdomain(www.m.website.com). How can i…
user6234108
3
votes
3 answers

How to view man page using Info in Emacs?

I can view man pages using info in the terminal: info pthread_create However, it is not possible with info in Emacs, even with info-apropos or info-menu.
Amumu
  • 17,924
  • 31
  • 84
  • 131
1
2 3
9 10