$> colordiff file1 file2
$> diff -u file1 file2 | colordiff
$> diff fileA fileB | vim -R -
$> vim -d fileA fileB
$> vimdiff fileA fileB fileC fileD
$> colordiff file1 file2
$> diff -u file1 file2 | colordiff
Sub HyperAdd()
'Converts each text hyperlink selected into a working hyperlink
For Each xCell In Selection
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
Next xCell
End Sub
<table style="background-color: #f3f3f3; font-family: Courier New, Courier, monospace; width:100%"> <tbody> <tr> <td> |
<<FullSearch(regex:'tag:')>> |
ebdev11:shell_scripts$ find . -iname "*pl" -exec grep -l "anyone" '{}' \; -print ./run_bioconcepts_incremental.pl ./run_bioconcepts_incremental.pl ./perl/test_GTRLB.pl ./perl/test_GTRLB.pl ./update_HPO.pl ./update_HPO.pl |
a.www:before {content: url(../img/moin-www.png); margin: 0 0.2em;}
$(date +%F)
DATE=`date +%Y-%m-%d`
DATE=`date +%Y-%m-%d:%H:%M:%S`
wget -mkEpnp http://example.org
wget --mirror --convert-links --adjust-extension --page-requisites
--no-parent http://example.org
Explanation of the various flags:--mirror
– Makes (among other things) the download recursive.--convert-links
– convert all the links (also to stuff like CSS stylesheets) to relative, so it will be suitable for offline viewing.--adjust-extension
– Adds suitable extensions to filenames (html
or css
) depending on their content-type.--page-requisites
– Download things like CSS style-sheets and images required to properly display the page offline.--no-parent
– When recursing do not ascend to the parent directory. It useful for restricting the download to only a portion of the site.
wget -mkEpnp http://example.org
p
is part of np
(--no-parent
) and hence you see p
twice in the flags.wget -mk -w 1 http://www.example.com
-mk will do mirroring
-w 1 wait 1 second in between downloads
$ nohup ./somescript.sh &
$ screen -A -m -d -S somename ./somescript.sh &
also see: http://en.wikipedia.org/wiki/Nohup, Advanced Bash Scripting Guide
dos <CR> <NL> unix <NL> mac <CR>
wget --mirror --convert-links --adjust-extension --page-requisites
--no-parent http://example.org
--mirror
– Makes (among other things) the download recursive.--convert-links
– convert all the links (also to stuff like CSS stylesheets) to relative, so it will be suitable for offline viewing.--adjust-extension
– Adds suitable extensions to filenames (html
or css
) depending on their content-type.--page-requisites
– Download things like CSS style-sheets and images required to properly display the page offline.--no-parent
– When recursing do not ascend to the parent directory. It useful for restricting the download to only a portion of the site.wget -mkEpnp http://example.org
p
is part of np
(--no-parent
) and hence you see p
twice in the flags.sudo yum install steamNote: There is also a staging repository where additional options are added to the package, like Valve's xpad driver and packages for running the SteamOS client in SteamOS mode. These features might not end up in RPMFusion. The repository is available at negativo17.org.
>$ alien -r package.deb
>$ sudo yum localinstall package.rpm
su -c "yum-config-manager --add-repo http://mokaproject.com/packages/rpm/moka-stable.repo"Then you can install the individual parts.
su -c "yum install moka-icon-theme"
gsettings set org.cinnamon.theme name "Moka"(BTW, it didn't work because I'm not using cinnamon, and it isn't installed! )