diff --git a/pages/common/c99.md b/pages/common/c99.md index e3f6c4d6c0..8108939ad8 100644 --- a/pages/common/c99.md +++ b/pages/common/c99.md @@ -1,4 +1,4 @@ -# C99 +# c99 > Compiles C programs according to the ISO C standard. diff --git a/pages/common/gradle.md b/pages/common/gradle.md index 8a37e14b61..11fa511f6c 100644 --- a/pages/common/gradle.md +++ b/pages/common/gradle.md @@ -1,4 +1,4 @@ -# Gradle +# gradle > Gradle is the official build system for Android Studio. diff --git a/pages/common/handbrakecli.md b/pages/common/handbrakecli.md index 47fb148112..4148b4dca0 100644 --- a/pages/common/handbrakecli.md +++ b/pages/common/handbrakecli.md @@ -1,19 +1,19 @@ -# HandBrakeCLI +# handbrakecli -> Video conversion tool. +> Command-line interface to the HandBrake video conversion tool. - Convert a video file to MKV (AAC 160kbit audio and x264 CRF20 video): -`HandBrakeCLI -i {{input.avi}} -o {{output.mkv}} -e x264 -q 20 -B 160` +`handbrakecli -i {{input.avi}} -o {{output.mkv}} -e x264 -q 20 -B 160` - Resize a video file to 320x240: -`HandBrakeCLI -i {{input.mp4}} -o {{output.mp4} -w 320 -l 240` +`handbrakecli -i {{input.mp4}} -o {{output.mp4} -w 320 -l 240` - List available presets: -`HandBrakeCLI --preset-list` +`handbrakecli --preset-list` - Convert an AVI video to MP4 using the Android preset: -`HandBrakeCLI --preset="Android" -i {{input.ext}} -o {{output.mp4}}` +`handbrakecli --preset="Android" -i {{input.ext}} -o {{output.mp4}}` diff --git a/pages/common/mp4box.md b/pages/common/mp4box.md index 7bd9e45f30..2f953c9621 100644 --- a/pages/common/mp4box.md +++ b/pages/common/mp4box.md @@ -1,15 +1,15 @@ -# MP4Box +# mp4box > MPEG-4 Systems Toolbox - Muxes streams into MP4 container. - Display information about an existing MP4 file: -`MP4Box -info {{filename}}` +`mp4box -info {{filename}}` - Add an SRT subtitle file into an MP4 file: -`MP4Box -add {{input_subs.srt}}:lang=eng -add {{input.mp4}} {{output.mp4}}` +`mp4box -add {{input_subs.srt}}:lang=eng -add {{input.mp4}} {{output.mp4}}` - Combine audio from one file and video from another: -`MP4Box -add {{input1.mp4}}#audio -add {{input2.mp4}}#video {{output.mp4}` +`mp4box -add {{input1.mp4}}#audio -add {{input2.mp4}}#video {{output.mp4}` diff --git a/pages/common/parallel.md b/pages/common/parallel.md index d8694854c3..c4ac66aa2d 100644 --- a/pages/common/parallel.md +++ b/pages/common/parallel.md @@ -1,4 +1,4 @@ -# GNU Parallel +# parallel > Run commands on multiple CPU cores. diff --git a/pages/common/python.md b/pages/common/python.md index 8a47aaa719..3de2942a00 100644 --- a/pages/common/python.md +++ b/pages/common/python.md @@ -1,4 +1,4 @@ -# Python +# python > Python language interpreter. diff --git a/pages/common/ssh.md b/pages/common/ssh.md index a6bd8ac095..66a23517d7 100644 --- a/pages/common/ssh.md +++ b/pages/common/ssh.md @@ -1,4 +1,4 @@ -# SSH +# ssh > Secure Shell is a protocol used to securely log onto remote systems. > It can be used for logging or executing commands on a remote server. diff --git a/pages/common/sshfs.md b/pages/common/sshfs.md index 0bf08a5fe8..9b9320b83c 100644 --- a/pages/common/sshfs.md +++ b/pages/common/sshfs.md @@ -1,4 +1,4 @@ -# SSHFS +# sshfs > Filesystem client based on ssh. diff --git a/pages/osx/xctool.md b/pages/osx/xctool.md index 01bb055abc..c0b4417743 100644 --- a/pages/osx/xctool.md +++ b/pages/osx/xctool.md @@ -1,10 +1,10 @@ -# XCTool +# xctool > Tool for building Xcode projects. - Build a single project without any workspace: -`xctool.sh -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build` +`xctool -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build` - Build a project that is part of a workspace: