Advertisement
Guest User

Untitled

a guest
Jan 17th, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.88 KB | None | 0 0
  1. [frost@frost-pc ~]$ sed
  2. Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]...
  3.  
  4. -n, --quiet, --silent
  5. suppress automatic printing of pattern space
  6. -e script, --expression=script
  7. add the script to the commands to be executed
  8. -f script-file, --file=script-file
  9. add the contents of script-file to the commands to be executed
  10. --follow-symlinks
  11. follow symlinks when processing in place
  12. -i[SUFFIX], --in-place[=SUFFIX]
  13. edit files in place (makes backup if SUFFIX supplied)
  14. -l N, --line-length=N
  15. specify the desired line-wrap length for the `l' command
  16. --posix
  17. disable all GNU extensions.
  18. -r, --regexp-extended
  19. use extended regular expressions in the script.
  20. -s, --separate
  21. consider files as separate rather than as a single continuous
  22. long stream.
  23. -u, --unbuffered
  24. load minimal amounts of data from the input files and flush
  25. the output buffers more often
  26. -z, --null-data
  27. separate lines by NUL characters
  28. --help display this help and exit
  29. --version output version information and exit
  30.  
  31. If no -e, --expression, -f, or --file option is given, then the first
  32. non-option argument is taken as the sed script to interpret. All
  33. remaining arguments are names of input files; if no input files are
  34. specified, then the standard input is read.
  35.  
  36. GNU sed home page: <http://www.gnu.org/software/sed/>.
  37. General help using GNU software: <http://www.gnu.org/gethelp/>.
  38. [frost@frost-pc ~]$ echo
  39.  
  40. [frost@frost-pc ~]$ wget
  41. wget: missing URL
  42. Usage: wget [OPTION]... [URL]...
  43.  
  44. Try `wget --help' for more options.
  45. [frost@frost-pc ~]$ grep
  46. Usage: grep [OPTION]... PATTERN [FILE]...
  47. Try 'grep --help' for more information.
  48. [frost@frost-pc ~]$ ffprobe
  49. ffprobe version 2.1.1 Copyright (c) 2007-2013 the FFmpeg developers
  50. built on Dec 10 2013 06:36:11 with gcc 4.8.2 (GCC)
  51. configuration: --prefix=/usr --disable-debug --disable-static --enable-avresample --enable-dxva2 --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-pic --enable-postproc --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
  52. libavutil 52. 48.101 / 52. 48.101
  53. libavcodec 55. 39.101 / 55. 39.101
  54. libavformat 55. 19.104 / 55. 19.104
  55. libavdevice 55. 5.100 / 55. 5.100
  56. libavfilter 3. 90.100 / 3. 90.100
  57. libavresample 1. 1. 0 / 1. 1. 0
  58. libswscale 2. 5.101 / 2. 5.101
  59. libswresample 0. 17.104 / 0. 17.104
  60. libpostproc 52. 3.100 / 52. 3.100
  61. Simple multimedia streams analyzer
  62. usage: ffprobe [OPTIONS] [INPUT_FILE]
  63.  
  64. You have to specify one input file.
  65. Use -h to get full help or, even better, run 'man ffprobe'.
  66. [frost@frost-pc ~]$ ffmpeg
  67. ffmpeg version 2.1.1 Copyright (c) 2000-2013 the FFmpeg developers
  68. built on Dec 10 2013 06:36:11 with gcc 4.8.2 (GCC)
  69. configuration: --prefix=/usr --disable-debug --disable-static --enable-avresample --enable-dxva2 --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-pic --enable-postproc --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
  70. libavutil 52. 48.101 / 52. 48.101
  71. libavcodec 55. 39.101 / 55. 39.101
  72. libavformat 55. 19.104 / 55. 19.104
  73. libavdevice 55. 5.100 / 55. 5.100
  74. libavfilter 3. 90.100 / 3. 90.100
  75. libavresample 1. 1. 0 / 1. 1. 0
  76. libswscale 2. 5.101 / 2. 5.101
  77. libswresample 0. 17.104 / 0. 17.104
  78. libpostproc 52. 3.100 / 52. 3.100
  79. Hyper fast Audio and Video encoder
  80. usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
  81.  
  82. Use -h to get full help or, even better, run 'man ffmpeg'
  83. [frost@frost-pc Desktop]$ sudo cp youtubeurlextractor /usr/local/bin/
  84. [frost@frost-pc Desktop]$ sudo rm -rf /usr/bin/youtubeurlextractor
  85. [frost@frost-pc Desktop]$ youtubeurlextractor "https://www.youtube.com/watch?v=HN5NEoziELY"
  86. /usr/local/bin/youtubeurlextractor: line 37: : command not found
  87. ^C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement