Hi:
perl -e 'print "hello world!\n"'
A simple filter:
perl -ne 'print if /REGEX/'
Filter out blank lines (in place):
(require 'recentf) | |
;; Implement functionality similar to uniquify to make recentf results bearable | |
;; Requires s.el and dash.el - awesome libraries from Magnar Sveen | |
;; Hat-tip : Baishampayan Ghose for the clojure implementation at | |
;; https://gist.github.com/ghoseb/8432086 | |
(require 's) | |
(require 'dash) | |
;;; Usage: /path/to/emacs -nw -Q -l /path/to/test-magit-stage-minimal.el --eval '(load-magit "/path/to/magit/lisp")' | |
;;; Created: 2020-03-04 03.05.24 | |
;;; Updated: 2020-03-04 21.17.19 | |
;;; Version: 2 | |
(toggle-debug-on-error) | |
;; ------------------------------------------------------------------ | |
;; elpa |
Beyond Compare 4 | |
Licensed to: ASIO Allsoftinone | |
Quantity: 1 user | |
Serial number: 1822-9597 | |
License type: Pro Edition for Windows | |
--- BEGIN LICENSE KEY --- | |
H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ | |
vC1Ro6sbAvKR4pVwtxdCfuoZDb6hJ5bVQKqlfihJfSYZt-xVrVU27+0Ja | |
hFbqTmYskatMTgPyjvv99CF2Te8ec+Ys2SPxyZAF0YwOCNOWmsyqN5y9t |
// create a function call that looks like | |
// "myfunc(someVar, 'bar')" | |
const callExpr = j.callExpression(j.identifier("myFunc"), [ | |
j.indentifier("someVar"), | |
j.literal("bar"), | |
]); |
#SingleInstance Force | |
#Persistent | |
DetectHiddenWindows, Off | |
;; Description | |
;; | |
;; This AutoHotkey script is to switch between different windows of the same process name. | |
;; | |
;; The checking algorithm is based on the app's process basename without path. |
Hi:
perl -e 'print "hello world!\n"'
A simple filter:
perl -ne 'print if /REGEX/'
Filter out blank lines (in place):
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="background.js"></script> | |
</head> | |
<body> | |
<textarea id="sandbox"></textarea> | |
</body> |
for 4.2.4 or higher,4.2.5,4.2.6 ,it's works , this is the way which makes Always in evaluation mode 。
/Applications/Beyond Compare.app/Contents/MacOS
BCompare
to BCompare.bak
BCompare
, and chmod a+u BCompare
#!/bin/bash
rm "/Users/$(whoami)/Library/Application Support/Beyond Compare/registry.dat"
"`dirname "$0"`"/BCompare.bak $@
// chars.cs | |
// A listing to print out a number of characters and their numbers | |
//---------------------------------------------------------------- | |
using System; | |
class chars | |
{ | |
public static void Main() | |
{ |