Skip to content

Commit

Permalink
mactag.command
Browse files Browse the repository at this point in the history
  • Loading branch information
BRNTZN committed Jul 25, 2020
1 parent 49e9cd0 commit 01a2418
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,26 @@ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

![Curl commando](doc/screenshot2.png)

Als je je eigen username onderaan terug ziet verschijnen gevolgd door @localhost dan is het commando klaar en kan je naar de volgende stap.
Als je je eigen username onderaan terug ziet verschijnen dan is het commando klaar en kan je naar de volgende stap.

![Curl commando uitgevoerd](doc/screenshot3.png)

3. Voer het volgende commando uit om pip te installeren, wacht opnieuw tot het commando afgerond is vooraleer naar de volgende stap te gaan.
3. Voer ook volgende commando's uit om pip te installeren:

```
python get-pip.py
```

```
export PATH=$PATH:~/Library/Python/2.7/bin
```

4. Nu kan pip gebruikt worden om openpyxl en xattr te installeren:

```
pip install openpyxl
```

```
pip install xattr
```
17 changes: 17 additions & 0 deletions mactag.command
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import subprocess
import os
import openpyxl
import xattr

command = 'ls -l; xattr -l; xattr -rc .;'\
'xattr -w com.apple.metadata:_kMDItemUserTags '\
r"""'<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><array><string>tag1</string><string>Red</string></array></plist>' eiffel.jpg"""

print(command)

output = subprocess.check_output(command, shell=True, cwd = os.path.dirname(os.path.realpath(__file__)))

print(output)

0 comments on commit 01a2418

Please sign in to comment.