<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://xdeb.org/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel>
        <title>XdebWiki shellscript</title>
        <description></description>
        <link>http://xdeb.org/wiki/</link>
        <lastBuildDate>Fri, 04 Jun 2010 16:34:25 +0200</lastBuildDate>
        <generator>FeedCreator 1.7.2-ppt DokuWiki</generator>
        <image>
            <url>http://xdeb.org/wiki/lib/images/favicon.ico</url>
            <title>XdebWiki</title>
            <link>http://xdeb.org/wiki/</link>
        </image>
        <item>
            <title>Delete .DS_Store script</title>
            <link>http://xdeb.org/wiki/shellscript/deletedsstore</link>
            <description>Script to find and delete .DS_Store files in Mac OS X folders

For Linux



#!/bin/sh
#
# Script to find and delete .DS_Store files in Mac OS X folders
# The script will delete all .DS_Store files in the directory
# it's executed from and below

find . -name .DS_Store -exec rm {} \;</description>
        <category>shellscript</category>
            <pubDate>Thu, 19 Jul 2007 17:16:09 +0200</pubDate>
        </item>
        <item>
            <title>Download archives script</title>
            <link>http://xdeb.org/wiki/shellscript/downloadarchives</link>
            <description>Lets say you have a directory full of files that are named foobar01.tar.gz, foobar02.tar.gz ... foobar50.tar.gz and you wont to download dem all. Here are a sample script that will do this.

You need to adapt it to handle the numbers of files, the URI and filename for your needs.</description>
        <category>shellscript</category>
            <pubDate>Thu, 19 Jul 2007 17:16:36 +0200</pubDate>
        </item>
        <item>
            <title>Find the pid script</title>
            <link>http://xdeb.org/wiki/shellscript/findpid</link>
            <description>Script to find the pid of a running process.


#!/bin/sh
#
# Script to find the PID

ps -axw | grep -i $1 | grep -v grep | grep -v fpid | awk '{print $1, $5}'</description>
        <category>shellscript</category>
            <pubDate>Thu, 19 Jul 2007 17:16:48 +0200</pubDate>
        </item>
    </channel>
</rss>
