about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2017-01-06 06:52:13 +0100
committerGitHub <noreply@github.com>2017-01-06 06:52:13 +0100
commitf89a4638923b89c4e17fa6811a62a7d01bccbdee (patch)
treee1ab792c966c74faaf1d16b11036af9291d9a21f /example
parent06461f1bd7a8c987b47381dffa3e1462cee8e44f (diff)
parent1940e5baa0310bb6a3090f4a5a3cc832b024f03f (diff)
downloadmiasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.tar.gz
miasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.zip
Merge pull request #470 from a-vincent/master
Tidy up which files are executable and which are not
Diffstat (limited to '')
-rwxr-xr-x[-rw-r--r--]example/asm/shellcode.py2
-rwxr-xr-x[-rw-r--r--]example/jitter/arm.py2
-rwxr-xr-x[-rw-r--r--]example/jitter/arm_sc.py2
-rwxr-xr-x[-rw-r--r--]example/jitter/example_types.py2
-rwxr-xr-x[-rw-r--r--]example/jitter/mips32.py2
-rwxr-xr-x[-rw-r--r--]example/jitter/msp430.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/example/asm/shellcode.py b/example/asm/shellcode.py
index f31c88c2..3ff11489 100644..100755
--- a/example/asm/shellcode.py
+++ b/example/asm/shellcode.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python2
 from argparse import ArgumentParser
 from pdb import pm
 
diff --git a/example/jitter/arm.py b/example/jitter/arm.py
index 7bd354bc..eac6c0e6 100644..100755
--- a/example/jitter/arm.py
+++ b/example/jitter/arm.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#! /usr/bin/env python2
 #-*- coding:utf-8 -*-
 import logging
 from pdb import pm
diff --git a/example/jitter/arm_sc.py b/example/jitter/arm_sc.py
index ca765d31..6644a440 100644..100755
--- a/example/jitter/arm_sc.py
+++ b/example/jitter/arm_sc.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#! /usr/bin/env python2
 #-*- coding:utf-8 -*-
 from miasm2.analysis.sandbox import Sandbox_Linux_armb_str
 from miasm2.analysis.sandbox import Sandbox_Linux_arml_str
diff --git a/example/jitter/example_types.py b/example/jitter/example_types.py
index c37c3b84..7ed964c2 100644..100755
--- a/example/jitter/example_types.py
+++ b/example/jitter/example_types.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#! /usr/bin/env python2
 """This script is just a short example of common usages for miasm2.core.types.
 For a more complete view of what is possible, tests/core/types.py covers
 most of the module possibilities, and the module doc gives useful information
diff --git a/example/jitter/mips32.py b/example/jitter/mips32.py
index a03cac8e..7c8900f8 100644..100755
--- a/example/jitter/mips32.py
+++ b/example/jitter/mips32.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#! /usr/bin/env python2
 #-*- coding:utf-8 -*-
 from argparse import ArgumentParser
 from miasm2.analysis import debugging
diff --git a/example/jitter/msp430.py b/example/jitter/msp430.py
index 89ecd930..5c8b7197 100644..100755
--- a/example/jitter/msp430.py
+++ b/example/jitter/msp430.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#! /usr/bin/env python2
 #-*- coding:utf-8 -*-
 from argparse import ArgumentParser
 from miasm2.analysis import debugging