Sorry

This feed does not validate.

In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://feeds2.feedburner.com/Command-line-fu

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  3.  <channel>
  4.    <title><![CDATA[All commands]]></title>
  5.    <link>http://www.commandlinefu.com/commands/browse/rss</link>
  6.    <description><![CDATA[A repository for the most elegant and useful UNIX commands.  Great commands can be shared, discussed and voted on to provide a comprehensive resource for working from the command-line]]></description>
  7.    <pubDate>Wed, 08 May 2024 06:37:54 +0000</pubDate>
  8.    <generator>Zend Framework Zend_Feed</generator>
  9.    <language>en-us</language>
  10.    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  11.    <item>
  12.      <title><![CDATA[Generate a GIF image from video file]]></title>
  13.      <author>keyboardsage</author>
  14.      <link>http://www.commandlinefu.com/commands/view/34946/generate-a-gif-image-from-video-file</link>
  15.      <guid>http://www.commandlinefu.com/commands/view/34946/generate-a-gif-image-from-video-file</guid>
  16.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ ffmpeg -ss 30 -t 3 -i input.mp4 -vf &quot;fps=10,scale=320:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse&quot; -loop 0 output.gif</code>
  17. <div style="">The 30 means start extracting frames from 30 seconds into the video. The 3 means extract the next 3 seconds from that point. The fps can be adjusted based on your preferences. The 320 is the width of the gif, the height will be calculated automatically.
  18. input.mp4 is the video file, which can be any video file ffmpeg supports. The output.gif is the gif created.</div>
  19. <ul style="list-style:none; padding: 0; margin: 0">
  20.    <li><a href="http://www.commandlinefu.com/commands/view/34946/generate-a-gif-image-from-video-file">View this command to comment, vote or add to favourites</a></li>
  21.    <li><a href="/commands/by/keyboardsage">View all commands by <strong>keyboardsage</strong></a></li>
  22. </ul>
  23. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  24. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  25. ]]></description>
  26.      <pubDate>Tue, 19 Mar 2024 00:34:23 +0000</pubDate>
  27.      <comments>http://www.commandlinefu.com/commands/view/34946/generate-a-gif-image-from-video-file</comments>
  28.    </item>
  29.    <item>
  30.      <title><![CDATA[Find all the hidden dot files]]></title>
  31.      <author>keyboardsage</author>
  32.      <link>http://www.commandlinefu.com/commands/view/34925/find-all-the-hidden-dot-files</link>
  33.      <guid>http://www.commandlinefu.com/commands/view/34925/find-all-the-hidden-dot-files</guid>
  34.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ find ./path_to_dir -type f -name '.*'</code>
  35. <div style="">This begins recursively looking at dot files starting from "./path_to_dir". Then it prints out the names of those files.
  36. If you are satisfied with the list of files discovered then you can delete them like so `find ./path_to_dir -type f -name '.*' -exec rm '{}' \;` which executes the removal program against each of those names previously printed.
  37. This is useful when you want to remove thumbnail files on Mac OSX/Windows or simply want to reset an app's configuration on Linux.</div>
  38. <ul style="list-style:none; padding: 0; margin: 0">
  39.    <li><a href="http://www.commandlinefu.com/commands/view/34925/find-all-the-hidden-dot-files">View this command to comment, vote or add to favourites</a></li>
  40.    <li><a href="/commands/by/keyboardsage">View all commands by <strong>keyboardsage</strong></a></li>
  41. </ul>
  42. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  43. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  44. ]]></description>
  45.      <pubDate>Sat, 16 Mar 2024 23:47:01 +0000</pubDate>
  46.      <comments>http://www.commandlinefu.com/commands/view/34925/find-all-the-hidden-dot-files</comments>
  47.    </item>
  48.    <item>
  49.      <title><![CDATA[Create a highly compressed encrypted 7zip file from a directory]]></title>
  50.      <author>keyboardsage</author>
  51.      <link>http://www.commandlinefu.com/commands/view/34924/create-a-highly-compressed-encrypted-7zip-file-from-a-directory</link>
  52.      <guid>http://www.commandlinefu.com/commands/view/34924/create-a-highly-compressed-encrypted-7zip-file-from-a-directory</guid>
  53.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ 7z a -t7z -mhe=on -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on some_directory.7z some_directory/</code>
  54. <div style="">Create a 7zip archive named "some_directory.7z" and adds to it the directory "some_directory".
  55. The `-mhe=on` is for header encryption, basically it mangles the file names so no one knows whats inside the 7z. If -mhe=on wasn't included, then a person without the password would still be able to view the file names inside the 7z. Having this option ensures confidentiality.
  56. To ensure the result is small use lzma2, level 9 compression. Lzma2 fast bytes range from 5 to 272, the higher the number the more aggressive it is at finding repetitive bytes that can be added to the dictionary. Here the fast bytes are set to 64 bytes and the dictionary is 32 MB. Depending on your purposes (the directory size and desired file size), you can be more aggressive with these values.
  57. Lastly, `-ms=on` just says concatenate all the individual files and treat them as a singular file when compressing. This leads to a higher compression ratio generally.</div>
  58. <ul style="list-style:none; padding: 0; margin: 0">
  59.    <li><a href="http://www.commandlinefu.com/commands/view/34924/create-a-highly-compressed-encrypted-7zip-file-from-a-directory">View this command to comment, vote or add to favourites</a></li>
  60.    <li><a href="/commands/by/keyboardsage">View all commands by <strong>keyboardsage</strong></a></li>
  61. </ul>
  62. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  63. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  64. ]]></description>
  65.      <pubDate>Sat, 16 Mar 2024 23:36:38 +0000</pubDate>
  66.      <comments>http://www.commandlinefu.com/commands/view/34924/create-a-highly-compressed-encrypted-7zip-file-from-a-directory</comments>
  67.    </item>
  68.    <item>
  69.      <title><![CDATA[Disk usage skipping mount points (even top-level ones)]]></title>
  70.      <author>dmmst19</author>
  71.      <link>http://www.commandlinefu.com/commands/view/34690/disk-usage-skipping-mount-points-even-top-level-ones</link>
  72.      <guid>http://www.commandlinefu.com/commands/view/34690/disk-usage-skipping-mount-points-even-top-level-ones</guid>
  73.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ for a in /*; do mountpoint -q -- &quot;$a&quot; || du -shx &quot;$a&quot;; done | sort -h</code>
  74. <div style="">Other solutions that involve doing
  75. <code>du -sx /*</code>
  76. are incomplete because they will still descend other top-level filesystems are that mounted directly at "/" because the * expands to explicitly include all files and directories in "/", and du will still traverse them even with -x because you asked it to by supplying the directory name as a parameter (indirectly via "*").</div>
  77. <ul style="list-style:none; padding: 0; margin: 0">
  78.    <li><a href="http://www.commandlinefu.com/commands/view/34690/disk-usage-skipping-mount-points-even-top-level-ones">View this command to comment, vote or add to favourites</a></li>
  79.    <li><a href="/commands/by/dmmst19">View all commands by <strong>dmmst19</strong></a></li>
  80. </ul>
  81. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  82. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  83. ]]></description>
  84.      <pubDate>Wed, 28 Feb 2024 01:43:19 +0000</pubDate>
  85.      <comments>http://www.commandlinefu.com/commands/view/34690/disk-usage-skipping-mount-points-even-top-level-ones</comments>
  86.    </item>
  87.    <item>
  88.      <title><![CDATA[Generate random port number]]></title>
  89.      <author>pabloab</author>
  90.      <link>http://www.commandlinefu.com/commands/view/34571/generate-random-port-number</link>
  91.      <guid>http://www.commandlinefu.com/commands/view/34571/generate-random-port-number</guid>
  92.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ shuf -i 1024-65535 -n 1</code>
  93. <div style="">`shuf` generate random permutations. `-i`, `--input-range=LO-HI` and `-n`, `--head-count=COUNT` output at most COUNT lines</div>
  94. <ul style="list-style:none; padding: 0; margin: 0">
  95.    <li><a href="http://www.commandlinefu.com/commands/view/34571/generate-random-port-number">View this command to comment, vote or add to favourites</a></li>
  96.    <li><a href="/commands/by/pabloab">View all commands by <strong>pabloab</strong></a></li>
  97. </ul>
  98. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  99. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  100. ]]></description>
  101.      <pubDate>Mon, 19 Feb 2024 22:02:25 +0000</pubDate>
  102.      <comments>http://www.commandlinefu.com/commands/view/34571/generate-random-port-number</comments>
  103.    </item>
  104.    <item>
  105.      <title><![CDATA[Assign top-level JSON entries to shell variables]]></title>
  106.      <author>penthief</author>
  107.      <link>http://www.commandlinefu.com/commands/view/32931/assign-top-level-json-entries-to-shell-variables</link>
  108.      <guid>http://www.commandlinefu.com/commands/view/32931/assign-top-level-json-entries-to-shell-variables</guid>
  109.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ json='{&quot;a&quot;:42, &quot;b&quot;:&quot;s t r i n g&quot;, &quot;c&quot;: []}' ; eval $(echo $json | jq -r 'to_entries | .[] | select(.value | scalars) | .key + &quot;=\&quot;&quot; + (.value | tostring) + &quot;\&quot;;&quot;' | tee /dev/tty)</code>
  110. <div style="">A recursive version might be useful too.
  111. /dev/tty is used to show which shell variables just got defined.</div>
  112. <ul style="list-style:none; padding: 0; margin: 0">
  113.    <li><a href="http://www.commandlinefu.com/commands/view/32931/assign-top-level-json-entries-to-shell-variables">View this command to comment, vote or add to favourites</a></li>
  114.    <li><a href="/commands/by/penthief">View all commands by <strong>penthief</strong></a></li>
  115. </ul>
  116. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  117. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  118. ]]></description>
  119.      <pubDate>Tue, 26 Sep 2023 03:11:38 +0000</pubDate>
  120.      <comments>http://www.commandlinefu.com/commands/view/32931/assign-top-level-json-entries-to-shell-variables</comments>
  121.    </item>
  122.    <item>
  123.      <title><![CDATA[MacOS: Make the terminal app always quit when]]></title>
  124.      <author>realkstrawn93 (http://realkstrawn93.blogspot.com)</author>
  125.      <link>http://www.commandlinefu.com/commands/view/32832/macos-make-the-terminal-app-always-quit-when</link>
  126.      <guid>http://www.commandlinefu.com/commands/view/32832/macos-make-the-terminal-app-always-quit-when</guid>
  127.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ alias exit=&quot;killall Terminal&quot;</code>
  128. <div style="">When you use the "exit" command in a Linux terminal window, it not only closes the terminal window itself but also the terminal emulator app, such as GNOME Terminal or Konsole, that it belongs to. If you use the "exit" command on macOS, however, Terminal.app still shows a dot below its Dock icon and is still running in the background. This alias, when entered into ~/.zshrc, overrides this behavior.</div>
  129. <ul style="list-style:none; padding: 0; margin: 0">
  130.    <li><a href="http://www.commandlinefu.com/commands/view/32832/macos-make-the-terminal-app-always-quit-when">View this command to comment, vote or add to favourites</a></li>
  131.    <li><a href="/commands/by/realkstrawn93">View all commands by <strong>realkstrawn93</strong></a></li>
  132. </ul>
  133. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  134. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  135. ]]></description>
  136.      <pubDate>Mon, 18 Sep 2023 04:41:06 +0000</pubDate>
  137.      <comments>http://www.commandlinefu.com/commands/view/32832/macos-make-the-terminal-app-always-quit-when</comments>
  138.    </item>
  139.    <item>
  140.      <title><![CDATA[Get the beats per minute from an audio track]]></title>
  141.      <author>malathion</author>
  142.      <link>http://www.commandlinefu.com/commands/view/32816/get-the-beats-per-minute-from-an-audio-track</link>
  143.      <guid>http://www.commandlinefu.com/commands/view/32816/get-the-beats-per-minute-from-an-audio-track</guid>
  144.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ ffmpeg -loglevel quiet -i &quot;$AUDIO_FILE&quot; -f f32le -ac 1 -ar 44100 - | bpm</code>
  145. <div style="">Requires bpm-tools https://www.pogo.org.uk/~mark/bpm-tools/</div>
  146. <ul style="list-style:none; padding: 0; margin: 0">
  147.    <li><a href="http://www.commandlinefu.com/commands/view/32816/get-the-beats-per-minute-from-an-audio-track">View this command to comment, vote or add to favourites</a></li>
  148.    <li><a href="/commands/by/malathion">View all commands by <strong>malathion</strong></a></li>
  149. </ul>
  150. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  151. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  152. ]]></description>
  153.      <pubDate>Sat, 16 Sep 2023 18:55:16 +0000</pubDate>
  154.      <comments>http://www.commandlinefu.com/commands/view/32816/get-the-beats-per-minute-from-an-audio-track</comments>
  155.    </item>
  156.    <item>
  157.      <title><![CDATA[Download Video & extract only a specific Time of it]]></title>
  158.      <author>malathion</author>
  159.      <link>http://www.commandlinefu.com/commands/view/32814/download-video-extract-only-a-specific-time-of-it</link>
  160.      <guid>http://www.commandlinefu.com/commands/view/32814/download-video-extract-only-a-specific-time-of-it</guid>
  161.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ yt-dlp --external-downloader ffmpeg --external-downloader-args &quot;-ss 00:05:00 -t 00:01:00&quot; &quot;https://www.youtube.com/watch?v=Y6DGABIcB3w&quot;</code>
  162. <div style="">Because this does not download more of the video than necessary, it is faster (especially with long videos).</div>
  163. <ul style="list-style:none; padding: 0; margin: 0">
  164.    <li><a href="http://www.commandlinefu.com/commands/view/32814/download-video-extract-only-a-specific-time-of-it">View this command to comment, vote or add to favourites</a></li>
  165.    <li><a href="/commands/by/malathion">View all commands by <strong>malathion</strong></a></li>
  166. </ul>
  167. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  168. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  169. ]]></description>
  170.      <pubDate>Sat, 16 Sep 2023 18:04:12 +0000</pubDate>
  171.      <comments>http://www.commandlinefu.com/commands/view/32814/download-video-extract-only-a-specific-time-of-it</comments>
  172.    </item>
  173.    <item>
  174.      <title><![CDATA[Show temp of all disk]]></title>
  175.      <author>kokoparkletal</author>
  176.      <link>http://www.commandlinefu.com/commands/view/32708/show-temp-of-all-disk</link>
  177.      <guid>http://www.commandlinefu.com/commands/view/32708/show-temp-of-all-disk</guid>
  178.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ grep -l &quot;drivetemp&quot; /sys/class/hwmon/hwmon*/name | while read f;     do printf &quot;%s(%-.2s&deg;C)\n&quot; &quot;`&lt;${f%/*}/device/model`&quot; &quot;`&lt;${f%/*}/temp1_input`&quot;; done</code>
  179. <div style="">Show temp of all disk with the drivetemp module activate</div>
  180. <ul style="list-style:none; padding: 0; margin: 0">
  181.    <li><a href="http://www.commandlinefu.com/commands/view/32708/show-temp-of-all-disk">View this command to comment, vote or add to favourites</a></li>
  182.    <li><a href="/commands/by/kokoparkletal">View all commands by <strong>kokoparkletal</strong></a></li>
  183. </ul>
  184. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  185. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  186. ]]></description>
  187.      <pubDate>Sun, 10 Sep 2023 18:24:29 +0000</pubDate>
  188.      <comments>http://www.commandlinefu.com/commands/view/32708/show-temp-of-all-disk</comments>
  189.    </item>
  190.    <item>
  191.      <title><![CDATA[Linux clear restrictions of a user's password]]></title>
  192.      <author>net0bsd (http://www.linuxred.net)</author>
  193.      <link>http://www.commandlinefu.com/commands/view/32460/linux-clear-restrictions-of-a-users-password</link>
  194.      <guid>http://www.commandlinefu.com/commands/view/32460/linux-clear-restrictions-of-a-users-password</guid>
  195.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ chage -E -1 -m 0 -M -1 -W -1 user01</code>
  196. <div style="">Command that clears the expiration restrictions of a user's password</div>
  197. <ul style="list-style:none; padding: 0; margin: 0">
  198.    <li><a href="http://www.commandlinefu.com/commands/view/32460/linux-clear-restrictions-of-a-users-password">View this command to comment, vote or add to favourites</a></li>
  199.    <li><a href="/commands/by/net0bsd">View all commands by <strong>net0bsd</strong></a></li>
  200. </ul>
  201. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  202. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  203. ]]></description>
  204.      <pubDate>Mon, 21 Aug 2023 06:37:40 +0000</pubDate>
  205.      <comments>http://www.commandlinefu.com/commands/view/32460/linux-clear-restrictions-of-a-users-password</comments>
  206.    </item>
  207.    <item>
  208.      <title><![CDATA[Monitor changed files into a log file, with day rotation, using fswatch (MacOS)]]></title>
  209.      <author>paulera (http://paulodev.com)</author>
  210.      <link>http://www.commandlinefu.com/commands/view/32396/monitor-changed-files-into-a-log-file-with-day-rotation-using-fswatch-macos</link>
  211.      <guid>http://www.commandlinefu.com/commands/view/32396/monitor-changed-files-into-a-log-file-with-day-rotation-using-fswatch-macos</guid>
  212.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ fswatch --exclude=.git/* --exclude=.settings --event-flags --event-flag-separator=\; -t -f '%Y-%m-%d %H:%M:%S' . &gt;&gt; ./.file_changes_$(date +&quot;%Y-%m-%d&quot; | sed s/-//g).log</code>
  213. <div style="">This command monitors changes in the current folder structure (subfolders included) and files, and log it into a hidden file in the same folder, called `.file_changes_YYMMDD.log`. Modify the `--exclude` parameters to define what should be skipped.</div>
  214. <ul style="list-style:none; padding: 0; margin: 0">
  215.    <li><a href="http://www.commandlinefu.com/commands/view/32396/monitor-changed-files-into-a-log-file-with-day-rotation-using-fswatch-macos">View this command to comment, vote or add to favourites</a></li>
  216.    <li><a href="/commands/by/paulera">View all commands by <strong>paulera</strong></a></li>
  217. </ul>
  218. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  219. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  220. ]]></description>
  221.      <pubDate>Thu, 17 Aug 2023 23:06:30 +0000</pubDate>
  222.      <comments>http://www.commandlinefu.com/commands/view/32396/monitor-changed-files-into-a-log-file-with-day-rotation-using-fswatch-macos</comments>
  223.    </item>
  224.    <item>
  225.      <title><![CDATA[Compute newest kernel version from Makefile on Torvalds' git repository]]></title>
  226.      <author>realkstrawn93 (http://realkstrawn93.blogspot.com)</author>
  227.      <link>http://www.commandlinefu.com/commands/view/32321/compute-newest-kernel-version-from-makefile-on-torvalds-git-repository</link>
  228.      <guid>http://www.commandlinefu.com/commands/view/32321/compute-newest-kernel-version-from-makefile-on-torvalds-git-repository</guid>
  229.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ curl -s -o - https://raw.githubusercontent.com/torvalds/linux/master/Makefile | head -n5 | grep -E '\ \=\ [0-9]{1,}' | cut -d' ' -f3 | tr '\n' '.' | sed -e &quot;s/\.$//&quot;</code>
  230. <div style="">The platform-agnostic version of https://www.commandlinefu.com/commands/view/25276/compute-newest-kernel-version-from-makefile-on-torvalds-git-repository because macOS doesn't have wget installed</div>
  231. <ul style="list-style:none; padding: 0; margin: 0">
  232.    <li><a href="http://www.commandlinefu.com/commands/view/32321/compute-newest-kernel-version-from-makefile-on-torvalds-git-repository">View this command to comment, vote or add to favourites</a></li>
  233.    <li><a href="/commands/by/realkstrawn93">View all commands by <strong>realkstrawn93</strong></a></li>
  234. </ul>
  235. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  236. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  237. ]]></description>
  238.      <pubDate>Thu, 10 Aug 2023 22:25:55 +0000</pubDate>
  239.      <comments>http://www.commandlinefu.com/commands/view/32321/compute-newest-kernel-version-from-makefile-on-torvalds-git-repository</comments>
  240.    </item>
  241.    <item>
  242.      <title><![CDATA[Sudoers: bypass all password prompts]]></title>
  243.      <author>realkstrawn93 (http://realkstrawn93.blogspot.com)</author>
  244.      <link>http://www.commandlinefu.com/commands/view/32320/sudoers-bypass-all-password-prompts</link>
  245.      <guid>http://www.commandlinefu.com/commands/view/32320/sudoers-bypass-all-password-prompts</guid>
  246.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ echo &quot;$USER ALL=(ALL:ALL) NOPASSWD: ALL&quot; | sudo tee -a /etc/sudoers</code>
  247. <div style="">If you as the sole user of a computer at home only don’t like needing to repeatedly type a password each time you run a command, using ‘NOPASSWD’ in sudoers for your specific username is for you.</div>
  248. <ul style="list-style:none; padding: 0; margin: 0">
  249.    <li><a href="http://www.commandlinefu.com/commands/view/32320/sudoers-bypass-all-password-prompts">View this command to comment, vote or add to favourites</a></li>
  250.    <li><a href="/commands/by/realkstrawn93">View all commands by <strong>realkstrawn93</strong></a></li>
  251. </ul>
  252. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  253. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  254. ]]></description>
  255.      <pubDate>Thu, 10 Aug 2023 22:19:18 +0000</pubDate>
  256.      <comments>http://www.commandlinefu.com/commands/view/32320/sudoers-bypass-all-password-prompts</comments>
  257.    </item>
  258.    <item>
  259.      <title><![CDATA[Prepend section dates to individual entries in a summary log file]]></title>
  260.      <author>jtopian</author>
  261.      <link>http://www.commandlinefu.com/commands/view/31963/prepend-section-dates-to-individual-entries-in-a-summary-log-file</link>
  262.      <guid>http://www.commandlinefu.com/commands/view/31963/prepend-section-dates-to-individual-entries-in-a-summary-log-file</guid>
  263.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ gawk 'match($0, /^\s*([0-9]{2}\/[0-9]{2}\/[0-9]{4})\s*/, m) {prev_date=m[1]} /SEARCHSTRING/ {print prev_date, &quot;,&quot;, $1 $2, &quot;,&quot;, $3, &quot;,&quot; $5}' inputfile.txt</code>
  264. <div style="">Searches for dates on lines by themselves. Uses that date to prepend all rows that contain SEARCHSTRING with the date, until it reaches another line with a date by itself. This fixed an issue with a specific log export where there would be a date, followed by all of the entries for that date.</div>
  265. <ul style="list-style:none; padding: 0; margin: 0">
  266.    <li><a href="http://www.commandlinefu.com/commands/view/31963/prepend-section-dates-to-individual-entries-in-a-summary-log-file">View this command to comment, vote or add to favourites</a></li>
  267.    <li><a href="/commands/by/jtopian">View all commands by <strong>jtopian</strong></a></li>
  268. </ul>
  269. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  270. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  271. ]]></description>
  272.      <pubDate>Tue, 11 Jul 2023 23:20:38 +0000</pubDate>
  273.      <comments>http://www.commandlinefu.com/commands/view/31963/prepend-section-dates-to-individual-entries-in-a-summary-log-file</comments>
  274.    </item>
  275.    <item>
  276.      <title><![CDATA[Print macOS current power delivery max wattage]]></title>
  277.      <author>lgarron (http://garron.net)</author>
  278.      <link>http://www.commandlinefu.com/commands/view/31919/print-macos-current-power-delivery-max-wattage</link>
  279.      <guid>http://www.commandlinefu.com/commands/view/31919/print-macos-current-power-delivery-max-wattage</guid>
  280.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ system_profiler SPPowerDataType | grep Wattage</code>
  281. <div style="">Print the max wattage of the current power draw source for a Mac. Note that the current amount of watts drawn may be lower, particularly if a high-wattage adapter is plugged into a Mac that has a full battery.</div>
  282. <ul style="list-style:none; padding: 0; margin: 0">
  283.    <li><a href="http://www.commandlinefu.com/commands/view/31919/print-macos-current-power-delivery-max-wattage">View this command to comment, vote or add to favourites</a></li>
  284.    <li><a href="/commands/by/lgarron">View all commands by <strong>lgarron</strong></a></li>
  285. </ul>
  286. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  287. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  288. ]]></description>
  289.      <pubDate>Thu, 06 Jul 2023 17:58:00 +0000</pubDate>
  290.      <comments>http://www.commandlinefu.com/commands/view/31919/print-macos-current-power-delivery-max-wattage</comments>
  291.    </item>
  292.    <item>
  293.      <title><![CDATA[Create a visually twisted effect by alternating the direction of the "staples" effect vertically. The effect is achieved by moving odd-numbered lines from right to left and even-numbered lines from left to right.]]></title>
  294.      <author>wuseman1</author>
  295.      <link>http://www.commandlinefu.com/commands/view/31887/create-a-visually-twisted-effect-by-alternating-the-direction-of-the-staples-effect-vertically.-the-effect-is-achieved-by-moving-odd-numbered-lines-from-right-to-left-and-even-numbered-lines-from-left-to-right.</link>
  296.      <guid>http://www.commandlinefu.com/commands/view/31887/create-a-visually-twisted-effect-by-alternating-the-direction-of-the-staples-effect-vertically.-the-effect-is-achieved-by-moving-odd-numbered-lines-from-right-to-left-and-even-numbered-lines-from-left-to-right.</guid>
  297.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ while :; do for ((i=0;i&lt;$(tput cols);i++));do clear;for ((j=0;j&lt;$(tput lines);j++));do printf &quot;\e[48;5;$((RANDOM%256))m%*s\e[0m\n&quot; $(((j+i)%2?$(tput cols)-i:i)) &quot;&quot;;done;sleep 0.05;done;done</code>
  298. <div style="">The effect is achieved by moving odd-numbered lines from right to left and even-numbered lines from left to right.
  299. For odd-numbered lines (with an index j), the ((j + i) % 2 == 0) condition is satisfied. In this case, the line width is set to i, resulting in the line moving from left to right.
  300. For even-numbered lines, the ((j + i) % 2 == 0) condition is not satisfied. The line width is set to $(tput cols) - i, causing the line to move from right to left.
  301. This alternating direction of movement creates a twisted visual effect as the lines appear to move in opposite directions.
  302. The code runs in a continuous loop, repeatedly updating the lines with changing background colors. There is a slight pause of 0.05 seconds between each iteration to control the speed of the animation.</div>
  303. <ul style="list-style:none; padding: 0; margin: 0">
  304.    <li><a href="http://www.commandlinefu.com/commands/view/31887/create-a-visually-twisted-effect-by-alternating-the-direction-of-the-staples-effect-vertically.-the-effect-is-achieved-by-moving-odd-numbered-lines-from-right-to-left-and-even-numbered-lines-from-left-to-right.">View this command to comment, vote or add to favourites</a></li>
  305.    <li><a href="/commands/by/wuseman1">View all commands by <strong>wuseman1</strong></a></li>
  306. </ul>
  307. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  308. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  309. ]]></description>
  310.      <pubDate>Tue, 04 Jul 2023 00:47:37 +0000</pubDate>
  311.      <comments>http://www.commandlinefu.com/commands/view/31887/create-a-visually-twisted-effect-by-alternating-the-direction-of-the-staples-effect-vertically.-the-effect-is-achieved-by-moving-odd-numbered-lines-from-right-to-left-and-even-numbered-lines-from-left-to-right.</comments>
  312.    </item>
  313.    <item>
  314.      <title><![CDATA[Fill the screen with randomly colored lines]]></title>
  315.      <author>wuseman1</author>
  316.      <link>http://www.commandlinefu.com/commands/view/31886/fill-the-screen-with-randomly-colored-lines</link>
  317.      <guid>http://www.commandlinefu.com/commands/view/31886/fill-the-screen-with-randomly-colored-lines</guid>
  318.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ while :; do printf &quot;\e[48;2;$((RANDOM % 256));$((RANDOM % 256));$((RANDOM % 256))m%*s\e[0m&quot; $(tput cols) &quot;&quot;; sleep 0.1; done</code>
  319. <div style="">This one-liner fills the screen with randomly colored lines.</div>
  320. <ul style="list-style:none; padding: 0; margin: 0">
  321.    <li><a href="http://www.commandlinefu.com/commands/view/31886/fill-the-screen-with-randomly-colored-lines">View this command to comment, vote or add to favourites</a></li>
  322.    <li><a href="/commands/by/wuseman1">View all commands by <strong>wuseman1</strong></a></li>
  323. </ul>
  324. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  325. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  326. ]]></description>
  327.      <pubDate>Tue, 04 Jul 2023 00:38:46 +0000</pubDate>
  328.      <comments>http://www.commandlinefu.com/commands/view/31886/fill-the-screen-with-randomly-colored-lines</comments>
  329.    </item>
  330.    <item>
  331.      <title><![CDATA[Scan LAN and get Windows host names]]></title>
  332.      <author>swarzynski</author>
  333.      <link>http://www.commandlinefu.com/commands/view/31796/scan-lan-and-get-windows-host-names</link>
  334.      <guid>http://www.commandlinefu.com/commands/view/31796/scan-lan-and-get-windows-host-names</guid>
  335.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ nmap -sn --system-dns 192.168.0.1-253</code>
  336. <div style=""></div>
  337. <ul style="list-style:none; padding: 0; margin: 0">
  338.    <li><a href="http://www.commandlinefu.com/commands/view/31796/scan-lan-and-get-windows-host-names">View this command to comment, vote or add to favourites</a></li>
  339.    <li><a href="/commands/by/swarzynski">View all commands by <strong>swarzynski</strong></a></li>
  340. </ul>
  341. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  342. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  343. ]]></description>
  344.      <pubDate>Fri, 23 Jun 2023 10:50:25 +0000</pubDate>
  345.      <comments>http://www.commandlinefu.com/commands/view/31796/scan-lan-and-get-windows-host-names</comments>
  346.    </item>
  347.    <item>
  348.      <title><![CDATA[Check if a domain is available for purchase]]></title>
  349.      <author>tyzbit (http://qtosw.com)</author>
  350.      <link>http://www.commandlinefu.com/commands/view/31767/check-if-a-domain-is-available-for-purchase</link>
  351.      <guid>http://www.commandlinefu.com/commands/view/31767/check-if-a-domain-is-available-for-purchase</guid>
  352.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ function canibuy { whois &quot;$1&quot; 2&gt;/dev/null | grep -q 'Registrant' &amp;&amp; echo &quot;taken&quot; || echo &quot;available&quot; }</code>
  353. <div style="">A quick alias to check if a domain is already registered or if it's available for purchase.</div>
  354. <ul style="list-style:none; padding: 0; margin: 0">
  355.    <li><a href="http://www.commandlinefu.com/commands/view/31767/check-if-a-domain-is-available-for-purchase">View this command to comment, vote or add to favourites</a></li>
  356.    <li><a href="/commands/by/tyzbit">View all commands by <strong>tyzbit</strong></a></li>
  357. </ul>
  358. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  359. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  360. ]]></description>
  361.      <pubDate>Wed, 21 Jun 2023 15:01:25 +0000</pubDate>
  362.      <comments>http://www.commandlinefu.com/commands/view/31767/check-if-a-domain-is-available-for-purchase</comments>
  363.    </item>
  364.    <item>
  365.      <title><![CDATA[This command provides more color variety for the rainbow-like appearance by generating random color codes from 16 to 231 for adb logcat.]]></title>
  366.      <author>wuseman1</author>
  367.      <link>http://www.commandlinefu.com/commands/view/31375/this-command-provides-more-color-variety-for-the-rainbow-like-appearance-by-generating-random-color-codes-from-16-to-231-for-adb-logcat.</link>
  368.      <guid>http://www.commandlinefu.com/commands/view/31375/this-command-provides-more-color-variety-for-the-rainbow-like-appearance-by-generating-random-color-codes-from-16-to-231-for-adb-logcat.</guid>
  369.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ adb logcat|awk '{ i srand();for (i = 1; i &lt;= NF; i++) { color = int(rand() * 216) + 16; printf &quot;\033[38;5;%dm%s\033[0m &quot;, color, $i;} printf &quot;\n&quot;; }'</code>
  370. <div style=""></div>
  371. <ul style="list-style:none; padding: 0; margin: 0">
  372.    <li><a href="http://www.commandlinefu.com/commands/view/31375/this-command-provides-more-color-variety-for-the-rainbow-like-appearance-by-generating-random-color-codes-from-16-to-231-for-adb-logcat.">View this command to comment, vote or add to favourites</a></li>
  373.    <li><a href="/commands/by/wuseman1">View all commands by <strong>wuseman1</strong></a></li>
  374. </ul>
  375. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  376. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  377. ]]></description>
  378.      <pubDate>Tue, 30 May 2023 16:48:17 +0000</pubDate>
  379.      <comments>http://www.commandlinefu.com/commands/view/31375/this-command-provides-more-color-variety-for-the-rainbow-like-appearance-by-generating-random-color-codes-from-16-to-231-for-adb-logcat.</comments>
  380.    </item>
  381.    <item>
  382.      <title><![CDATA[Disassemble all ACPI tables on your system]]></title>
  383.      <author>realkstrawn93 (http://realkstrawn93.blogspot.com)</author>
  384.      <link>http://www.commandlinefu.com/commands/view/30815/disassemble-all-acpi-tables-on-your-system</link>
  385.      <guid>http://www.commandlinefu.com/commands/view/30815/disassemble-all-acpi-tables-on-your-system</guid>
  386.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ for i in /sys/firmware/acpi/tables/*; do sudo iasl -p $PWD/$(echo $i | cut -d\/ -f6) $i &amp;&amp; sudo chown $USER $(echo $i | cut -d\/ -f6); done</code>
  387. <div style="">The fact that Linux exposes the ACPI tables to the user via sysfs makes them a gold mine of valuable hardware information for low-level developers. Looping through each of them and disassembling them all makes them even more valuable.</div>
  388. <ul style="list-style:none; padding: 0; margin: 0">
  389.    <li><a href="http://www.commandlinefu.com/commands/view/30815/disassemble-all-acpi-tables-on-your-system">View this command to comment, vote or add to favourites</a></li>
  390.    <li><a href="/commands/by/realkstrawn93">View all commands by <strong>realkstrawn93</strong></a></li>
  391. </ul>
  392. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  393. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  394. ]]></description>
  395.      <pubDate>Sun, 16 Apr 2023 05:33:51 +0000</pubDate>
  396.      <comments>http://www.commandlinefu.com/commands/view/30815/disassemble-all-acpi-tables-on-your-system</comments>
  397.    </item>
  398.    <item>
  399.      <title><![CDATA[Polkit: Force KDE apps to always recognize your display]]></title>
  400.      <author>realkstrawn93 (http://realkstrawn93.blogspot.com)</author>
  401.      <link>http://www.commandlinefu.com/commands/view/30772/polkit-force-kde-apps-to-always-recognize-your-display</link>
  402.      <guid>http://www.commandlinefu.com/commands/view/30772/polkit-force-kde-apps-to-always-recognize-your-display</guid>
  403.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ alias pkexec=&ldquo;pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY KDE_SESSION_VERSION=5 KDE_FULL_SESSION=true&rdquo;</code>
  404. <div style="">KDE apps expect certain variables to be set, and unfortunately pkexec doesn’t set them by default. So, by setting this alias, it becomes possible to run, e.g. “pkexec kate” or “pkexec dolphin” and it’ll actually run.</div>
  405. <ul style="list-style:none; padding: 0; margin: 0">
  406.    <li><a href="http://www.commandlinefu.com/commands/view/30772/polkit-force-kde-apps-to-always-recognize-your-display">View this command to comment, vote or add to favourites</a></li>
  407.    <li><a href="/commands/by/realkstrawn93">View all commands by <strong>realkstrawn93</strong></a></li>
  408. </ul>
  409. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  410. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  411. ]]></description>
  412.      <pubDate>Thu, 13 Apr 2023 05:37:36 +0000</pubDate>
  413.      <comments>http://www.commandlinefu.com/commands/view/30772/polkit-force-kde-apps-to-always-recognize-your-display</comments>
  414.    </item>
  415.    <item>
  416.      <title><![CDATA[Loops over files, runs a command, dumps output to a file]]></title>
  417.      <author>topher1kenobe (http://derosia.com)</author>
  418.      <link>http://www.commandlinefu.com/commands/view/30748/loops-over-files-runs-a-command-dumps-output-to-a-file</link>
  419.      <guid>http://www.commandlinefu.com/commands/view/30748/loops-over-files-runs-a-command-dumps-output-to-a-file</guid>
  420.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ for f in *php; do echo $f &gt;&gt; ~/temp/errors.txt; phpcsw $f | grep GET &gt;&gt; ~/temp/errors.txt; done</code>
  421. <div style="">In this case I'm selecting all php files in a dir, then echoing the filename and piping it to ~/temp/errors.txt. Then I'm running my alias for PHPCS (WordPress flags in my alias), then piping the PHPCS output to grep and looking for GET. Then I'm piping that output to the same file as above.
  422. This gets a list of files and under each file the GET security errors for that file.
  423. Extrapolate this to run any command on any list of files and pipe the output to a file.
  424. Remove the >> ~/temp/errors.txt to get output to the screen rather than to a file.</div>
  425. <ul style="list-style:none; padding: 0; margin: 0">
  426.    <li><a href="http://www.commandlinefu.com/commands/view/30748/loops-over-files-runs-a-command-dumps-output-to-a-file">View this command to comment, vote or add to favourites</a></li>
  427.    <li><a href="/commands/by/topher1kenobe">View all commands by <strong>topher1kenobe</strong></a></li>
  428. </ul>
  429. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  430. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  431. ]]></description>
  432.      <pubDate>Wed, 12 Apr 2023 14:17:14 +0000</pubDate>
  433.      <comments>http://www.commandlinefu.com/commands/view/30748/loops-over-files-runs-a-command-dumps-output-to-a-file</comments>
  434.    </item>
  435.    <item>
  436.      <title><![CDATA[Download Video & extract only a specific Time of it]]></title>
  437.      <author>dbiesecke</author>
  438.      <link>http://www.commandlinefu.com/commands/view/30575/download-video-extract-only-a-specific-time-of-it</link>
  439.      <guid>http://www.commandlinefu.com/commands/view/30575/download-video-extract-only-a-specific-time-of-it</guid>
  440.      <description><![CDATA[<code style="padding:5px; font-family:monospace; font-size:12pt">$ fmpeg $(yt-dlp -g 'https://de.pornhub.com/view_video.php?viewkey=ph637366806d6eb' | sed 's/^/-ss 00:05 -i /') -t 01:00 -c copy out.mp4</code>
  441. <div style=""></div>
  442. <ul style="list-style:none; padding: 0; margin: 0">
  443.    <li><a href="http://www.commandlinefu.com/commands/view/30575/download-video-extract-only-a-specific-time-of-it">View this command to comment, vote or add to favourites</a></li>
  444.    <li><a href="/commands/by/dbiesecke">View all commands by <strong>dbiesecke</strong></a></li>
  445. </ul>
  446. <p><a href="http://www.commandlinefu.com"><img src="http://www.commandlinefu.com/images/small-logo.jpg" alt="commandlinefu.com"/></a></p>
  447. <p>Diff your entire server config at <a href="http://www.scriptrock.com?utm_campaign=clfu&utm_medium=clfu%20api%20rss&utm_source=clfu">ScriptRock.com</a></p>
  448. ]]></description>
  449.      <pubDate>Sat, 01 Apr 2023 17:39:01 +0000</pubDate>
  450.      <comments>http://www.commandlinefu.com/commands/view/30575/download-video-extract-only-a-specific-time-of-it</comments>
  451.    </item>
  452.  </channel>
  453. </rss>
  454.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda