For the file file.txt:
sed -i 's/abc/abcd/g' file.txt
For all files in the current folder:
find . -maxdepth 1 -type f -exec sed -i 's/abc/abcd/g' {} \;
For the files in the current directory and all subdirectories:
<?php | |
/** | |
* Copyright Zikula Foundation 2009 - Zikula Application Framework | |
* | |
* This work is contributed to the Zikula Foundation under one or more | |
* Contributor Agreements and licensed to You under the following license: | |
* | |
* @license GNU/LGPLv3 (or at your option, any later version). | |
* @package Zikula | |
* @subpackage Users |
// Copyright Zikula Foundation 2010 - license GNU/LGPLv3 (or at your option, any later version). | |
Zikula.define("AdminPanel");Zikula.AdminPanel.labels={clickToEdit:Zikula.__("Right-click down arrows to edit tab name"),edit:Zikula.__("Edit category"),remove:Zikula.__("Delete category"),makeDefault:Zikula.__("Make default category"),saving:Zikula.__("Saving")};Zikula.AdminPanel.setupNotices=function(){var b={headerSelector:"strong",headerClassName:"z-systemnoticeheader z-panel-indicator",effectDuration:0.5},a=$$("#z-developernotices ul:first");if($("z-securityanalyzer")){b.active=[0]}Zikula.AdminPanel.noticesPanels=new Zikula.UI.Panels("admin-systemnotices",b);if(a[0]){a[0].removeClassName("z-hide")}};Zikula.AdminPanel.Tab=Class.create({initialize:function(b,a){if(a){this.tab=this.createTab(a)}else{this.tab=$(b)}this.id=/admintab_(\d+)/.exec(this.tab.identify())[1];this.attachActionsMenu();this.attachModulesMenu();this.attachEditor();Droppables.add(this.tab.down("a"),{accept:"draggable",hoverclass:"ajaxhover",on |
For the file file.txt:
sed -i 's/abc/abcd/g' file.txt
For all files in the current folder:
find . -maxdepth 1 -type f -exec sed -i 's/abc/abcd/g' {} \;
For the files in the current directory and all subdirectories:
setInterval(function(){jQuery.ajax('YOUR-URL-TO-THE-THEME-FILE',{cache:false}).success(function(html){var btn=jQuery("div[data-action='update_preview']").first();if(html!=ace.edit('editor').getValue()){ace.edit('editor').setValue(html);if(!btn.hasClass('disabled'))btn.click()}});},1000); |
tumblr.py
file into ~/.config/variety/plugins/quotes
.Effects -> Quotes -> Sources and filtering
.authors
, enter the blog names you want to get quotes from (.tumblr.com
will be added automatically).#/bin/bash | |
# Update Software | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Set launcher icons | |
gsettings set com.canonical.Unity.Launcher favorites "['application://gnome-terminal.desktop', 'application://nautilus.desktop', 'unity://running-apps', 'unity://expo-icon', 'unity://devices']" | |
# PHP, Apache2, etc. |
convert test.gif test%05d.jpg | |
ffmpeg -r NUMBER_OF_JPG_PICTURES_GENERATED -i test%05d.jpg -y -an test.avi |
mogrify -resize 50% -format jpg * |
mencoder -ss 00:30:00 -endpos 00:00:05 -oac copy -ovc copy originalfile -o newfile |
<?php | |
$numbers = array(16,18,9,22,1,3,25,12,15,19,20); | |
foreach ($numbers as $number) | |
echo chr(64 + $number); |