Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i wonder what does this command do, can any one know what is it about?

What I have tried:

i have tried it on mac bash terminal but i cant find out what it does
Posted
Updated 12-Jun-18 0:52am

1 solution

It is never a good idea to execute an application when not knwowing what it does (especially by passing command line options). Do such at least as normal user and not as root.

With many applications there is a man page installed too. So you should first try if such is available:
man scan
and
info scan
That should explain the purpose of the program and what the options are doing when present.

Most Linux applications provide an option to show help about the available command line options. This option is usually -h. So try executing (at your own risk)
scan -h

If that lists the avaible options, check for an option showing the program version (usually -V or -v). The output will often contain a more informative name of the application / product. The list of options will also contain a short description for the -a and -C options.
 
Share this answer
 
v3
Comments
Member 13820729 13-Jun-18 8:13am    
Actually i have discovers the answer i'm looking for , to preform the scan command on Linux fits of all you must install sudo apt install scan on Linux and scan is kind a channel scanning command and its like alsc | dvbscan - > scan - a 0 (adapter) -c (scan on current tuned transponder only)
Jochen Arndt 13-Jun-18 8:31am    
So it is a DVB tuner scanning tool.

Then I would expect it to be part of the dvb-apps package (https://www.linuxtv.org/wiki/index.php/Scan) and the last option to be a lower case 'c'.
Member 13820729 13-Jun-18 8:35am    
Thanks so much for providing me with that link, i was looking for it and could't recognized it was a part of LinuxTV. appreciated a lot.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900