উত্তর:
আপনি অনলাইন ডকুমেন্টেশন ব্যবহার করতে পারেন।
curl "http://man.he.net/?topic=<command_name>§ion=all"
। <command_name>
আপনি যে কমান্ডটি সন্ধান করছেন তার সাথে প্রতিস্থাপন করুন
এটি একটি বিট Overkill হতে পারে, কিন্তু আপনি ডাউনলোড করতে পারে Cygwin যার মধ্যে রয়েছে হবে bash
, man
মত, এবং তথ্য পাঠকদের pinfo
।
সাইগউইন ইনস্টলার আপনাকে সাইগউইনের একটি দুর্দান্ত ছোট উপসেট হিসাবে নিজের ইনস্টলটি কাস্টমাইজ করতে দেয়।
আপনি করতে পারেন man পৃষ্ঠা গীত এর ব্যাশ পরিবেশ নিয়ে কাজ পাবেন, কিন্তু এটি সম্ভবত অন্যান্য বিকল্প যে কম কাজ নিতে বিবেচনা করতে আরও বেশি সুবিধাজনক হবে।
সুপার ইউজারে আমারও খুব বেশি রেপ নেই, তাই আমি দুঃখের সাথে বলতে পারি যে প্রতিক্রিয়াতে আমার প্রয়োজনীয় সমস্ত লিঙ্কগুলি আমি সত্যিই দিতে পারি না। আমি আমার প্রতিক্রিয়া টম্বলারে পুনরায় পোস্ট করেছি ।
সংক্ষেপে:
শুভকামনা।
MinGW-get install msys-man
। ম্যান একটি জানালা বাইনারি হিসাবে পাওয়া যায় sourceforge.net/projects/ezwinports/files (প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী মাধ্যমে পাওয়া গেছে: mingw.org/wiki/FAQ#toc10 )। সেই পৃষ্ঠাটিতেও বিদ্রূপ রয়েছে। হয় স্ক্রিপ্টগুলির চেয়ে সম্ভবত দ্রুত চলবে।
man
স্থানীয়ভাবে আপনি যে আদেশটি ব্যবহার করতে পারেন তা পেতে আমি অন্য কয়েকটি উত্তর এক সাথে রেখেছি । শুধু তোমার নিম্নোক্ত বিদ্ধ .bashrc
, এবং হয় source
এটা, অথবা আপনার টার্মিনাল পুনরায় খুলুন।
function man {
local section=all
if [[ "$1" =~ ^[0-9]+$ ]]; then section="$1"; shift; fi
local doc="$(curl -v --silent --data-urlencode topic="$@" --data-urlencode section="$section" http://man.he.net/ 2>&1)"
local ok=$?
local pre="$(printf '%s' "$doc" | sed -ne "/<PRE>/,/<\/PRE>/ { /<PRE>/ { n; b; }; p }")"
[[ $ok -eq 0 && -n "$pre" ]] && printf '%s' "$pre" | less || printf 'Got nothing.\n' >&2
return $ok
}
এটি নির্দিষ্ট ম্যান বিভাগগুলির অনুরোধ সমর্থন করে, উদাহরণস্বরূপ man 3 printf
সিস্টেম কলের জন্য।
দুর্বলতা: উত্স (man.he.net) হুবহু একটি রেস্টলফুল এপিআই নয়, এবং কিছু না পাওয়া সত্ত্বেও এটি 200 ফিরিয়ে দেয়, সুতরাং সঠিক ত্রুটির বার্তা দেওয়া শক্ত hard পরিবর্তে, সমস্যাটি যেই হোক না কেন এটি কেবল "কিছুই পাওয়া যায় না" ছাপায়। এটি সম্ভবত উন্নত করা যেতে পারে। এছাড়াও, ফলস্বরূপ পৃষ্ঠায় এইচটিএমএল সত্তা রয়েছে, যেমন <
পরিবর্তে <
, যা কিছু ব্যবহারের স্ট্রিংকে কুশ্রী করে তোলে।
সাথ্যের উত্তর ছাড়াও , আপনি উইন্ডোজের জন্য ব্যাশে এটি করতে পারেন:
curl -v --silent "http://man.he.net/?topic=<command_name>§ion=all" 2>&1 | sed -n "/<PRE>/,/<\/PRE>/p"
<command_name>
আপনি যে কমান্ডটি সন্ধান করছেন তার সাথে কেবল প্রতিস্থাপন করুন ।
কমান্ডের উদাহরণ আউটপুট ls
:
<প্রাইস> সিনপোসিস এলএস [বিকল্প] ... [ফাইল] ...
বর্ণনা ফাইলগুলি সম্পর্কিত তথ্য তালিকা (ডিফল্টরূপে বর্তমান ডিরেক্টরি)। এন্ট্রিগুলিকে বর্ণানুক্রমিকভাবে বাছাই করুন -কফুটভসাক্স এবং --সোর্টের কোনওটি নির্দিষ্ট না হলে।
Mandatory arguments to long options are mandatory for short options too. -a, --all do not ignore entries starting with . -A, --almost-all do not list implied . and .. --author with -l, print the author of each file -b, --escape print C-style escapes for nongraphic characters --block-size=SIZE scale sizes by SIZE before printing them. E.g., `--block-size=M' prints sizes in units of 1,048,576 bytes. See SIZE format below. -B, --ignore-backups do not list implied entries ending with ~ -c with -lt: sort by, and show, ctime (time of last modification of file status information) with -l: show ctime and sort by name otherwise: sort by ctime, newest first -C list entries by columns --color[=WHEN] colorize the output. WHEN defaults to `always' or can be `never' or `auto'. More info below -d, --directory list directory entries instead of contents, and do not derefer- ence symbolic links -D, --dired generate output designed for Emacs' dired mode -f do not sort, enable -aU, disable -ls --color -F, --classify append indicator (one of */=>@|) to entries --group-directories-first group directories before files. augment with a --sort option, but any use of --sort=none (-U) disables grouping -G, --no-group in a long listing, don't print group names -h, --human-readable with -l, print sizes in human readable format (e.g., 1K 234M 2G) --si likewise, but use powers of 1000 not 1024 -H, --dereference-command-line follow symbolic links listed on the command line --dereference-command-line-symlink-to-dir follow each command line symbolic link that points to a direc- tory --hide=PATTERN do not list implied entries matching shell PATTERN (overridden by -a or -A) --indicator-style=WORD append indicator with style WORD to entry names: none (default), slash (-p), file-type (--file-type), classify (-F) -i, --inode print the index number of each file -I, --ignore=PATTERN do not list implied entries matching shell PATTERN -k like --block-size=1K -l use a long listing format -L, --dereference when showing file information for a symbolic link, show informa- tion for the file the link references rather than for the link itself -m fill width with a comma separated list of entries -n, --numeric-uid-gid like -l, but list numeric user and group IDs -N, --literal print raw entry names (don't treat e.g. control characters spe- cially) -o like -l, but do not list group information enclose entry names in double quotes --quoting-style=WORD use quoting style WORD for entry names: literal, locale, shell, shell-always, c, escape -r, --reverse reverse order while sorting -R, --recursive list subdirectories recursively -s, --size print the allocated size of each file, in blocks -S sort by file size --sort=WORD sort by WORD instead of name: none -U, extension -X, size -S, time -t, version -v --time=WORD with -l, show time as WORD instead of modification time: atime -u, access -u, use -u, ctime -c, or status -c; use specified time as sort key if --sort=time --time-style=STYLE with -l, show times using style STYLE: full-iso, long-iso, iso, locale, +FORMAT. FORMAT is interpreted like `date'; if FORMAT is FORMAT1<newline>FORMAT2, FORMAT1 applies to non-recent files and FORMAT2 to recent files; if STYLE is prefixed with `posix-', STYLE takes effect only outside the POSIX locale -t sort by modification time, newest first -T, --tabsize=COLS assume tab stops at each COLS instead of 8 -u with -lt: sort by, and show, access time with -l: show access time and sort by name otherwise: sort by access time -U do not sort; list entries in directory order -v natural sort of (version) numbers within text -w, --width=COLS assume screen width instead of current value -x list entries by lines instead of by columns -X sort alphabetically by entry extension -Z, --context print any SELinux security context of each file Using color to distinguish file types is disabled both by default and with --color=never. With --color=auto, ls emits color codes only when standard output is connected to a terminal. The LS_COLORS environment variable can change the settings. Use the dircolors command to set it.
প্রস্থান স্থিতি: 0 যদি ঠিক থাকে,
1 if minor problems (e.g., cannot access subdirectory), 2 if serious trouble (e.g., cannot access command-line argument).
লেখক রিচার্ড এম স্ট্যালম্যান এবং ডেভিড ম্যাকেনজি লিখেছেন।
বাগ রিপোর্ট করায় বাগের রিপোর্টগুলি ls বাগগুলি bug-coreutils@gnu.org জিএনইউ কোর্টিলস হোম পেজে: < http://www.gnu.org/software/coreutils/> ; জিএনইউ সফ্টওয়্যার ব্যবহার করতে সাধারণ সহায়তা: < http://www.gnu.org/gethelp/> ; এলএস অনুবাদ বাগের প্রতিবেদন করুন < http://translationproject.org/team/> ;
কপিরাইট কপিরাইট (সি) ২০১১ ফ্রি সফটওয়্যার ফাউন্ডেশন, ইনক। লাইসেন্স জিপিএলভি 3 +: জিএনইউ জিপিএল সংস্করণ 3 বা তার পরের < http://gnu.org/license/gpl.html> ; এটি নিখরচায় সফ্টওয়্যার: আপনি এটি পরিবর্তন ও পুনরায় বিতরণ করতে মুক্ত are আইন দ্বারা অনুমোদিত সীমাতে কোনও গ্যারান্টি নেই।
এছাড়াও দেখুন ls এর সম্পূর্ণ ডকুমেন্টেশন টেক্সিনফোর ম্যানুয়াল হিসাবে রক্ষণাবেক্ষণ করা হয়। যদি তথ্য এবং এলএস প্রোগ্রামগুলি আপনার সাইটে সঠিকভাবে ইনস্টল করা থাকে তবে কম্যান্ড
info coreutils 'ls invocation' should give you access to the complete manual.
জিএনইউ কোর্টিলস 8.12.197-032bb সেপ্টেম্বর ২০১১
<STRONG> <A HREF="/man1/LS"> এলএস (1) </A> </STRONG> </PRE>
উত্তর , এই থেকে প্রশ্ন , সহায়ক হতে পারে:
বাশ উইন্ডোতে ঠিক কমান্ডের জন্য আপনাকে তথ্য দেয়।
গিট কমান্ড কুইক রেফারেন্স
git [command] -help
আপনার ব্রাউজারে কমান্ডের জন্য অনলাইন তথ্য খোলে।
গিট কমান্ড ম্যানুয়াল পৃষ্ঠাগুলি
git help [command] git [command] --help
git grep
সমর্থন করে না -R
। git-scm.com/docs/git#_git_commands
অন্য কেউ যদি man
উইন্ডোজে কাজ করার চেষ্টা করছেন এবং Msys2 ব্যবহার করছেন , আমি যা পেয়েছি তা এখানে:
আমি উপরের উত্তরটি ব্যবহার করে খুব কাছাকাছি এসেছি যা বলেছে ইনস্টল করতে groff
(প্যাকম্যানের মাধ্যমে উপলভ্য) এবং তারপরে এখানে স্ক্রিপ্টটি ব্যবহার করুন যা এর মূল দিকে কল করেছে groff -Tascii -mandoc -P-c
।
তবে আমি প্রথমে জিজেড ফাইলগুলি সঙ্কুচিত না করলে আমি আমার ম্যান পৃষ্ঠাগুলিতে (এটি পাওয়া যায় /usr/share/man
) কাজ করতে পারিনি !
এটি একটি গ্রহণযোগ্য সমাধান ছিল না, তাই আমি আরও তাকিয়ে দেখলাম যে দৌড়ে
pacman -Ss -man
তিনটি প্যাকেজ রয়েছে (বর্তমানে) "man-" এর উপসর্গ রয়েছে। ( সেগুলি এখানে দেখুন )।
আমি ম্যান-ডিবি নামক একটিকে চেষ্টা করেছিলাম , এটি কাজ করে এবং এখন আমার man
নিয়মিত প্রত্যাশিত ফ্যাশনে চালানোর ক্ষমতা আছে ।
pacman -S man
প্রত্যাশা অনুসারে কেবল চালানো এবং ইনস্টল করতে সক্ষম হয়েছি
এর শেষে যুক্ত করুন .bashrc
C:\Users\<Username>\.bashrc
function man() {
VAR1="http://man.he.net/?topic="
VAR2=$1
VAR3="§ion=all"
VAR4="$VAR1$VAR2$VAR3"
curl -v --silent "$VAR4" 2>&1 | sed -n "/<PRE>/,/<\/PRE>/p"
}
এর শেষে যুক্ত করুন .bash_profile
C:\Users\<Username>\.bash_profile
# Read .bashrc
source ~/.bashrc
টার্মিনাল পুনরায় আরম্ভ করুন।
man find
এর জন্য ম্যানুয়াল পৃষ্ঠাগুলি ফিরিয়ে দেবে find
।
এখানে সংক্ষিপ্ত উত্তরের জন্য একটি সংস্করণ এখানে দেওয়া হয়েছে:
function man-short() {
$1 --help
}