Wanneer u bezig bent met het verhuizen van uw website en u nog niet de dns hebt aangepast kunt u de nieuwe site niet bereiken onder de domeinnaam. De dns wijst immers nog steeds naar de oude locatie. We kunnen hier gebruik maken van het hosts file dat op zowel unix (gebaseerde) systemen linux, freebsd, …
Remove unwanted files
Open the terminal and navigate to the desired folder for cleaning up process: find . -name \.DS_Store -exec rm -rf {} \; find . -name \_notes -exec rm -rf {} \;
Batch rename images with a sequence on the Mac
Since I’m working on a MacBook Pro I’ve been missing this feature I had on a Windows machine; easy renaming images with a sequence. I used it mainly for images taken on our holidays; it was a huge batch process. I tried again finding a solution for it and succeeded and got a better solution …
“Batch rename images with a sequence on the Mac” verder lezen
List all files and folders in a certain directory with Terminal
ALL files and ALL folders For a text file of ALL files and Folders in your Home Directory, In Terminal, enter: find ~ -print | sed -e ‘s;[^/]*/;|—>;g;s;—>|; |;g’ > ~/Desktop/Tree.txt To direct to a specific Folder, replace ~ with the Directory (i.e. find ~/Documents): find ~/Documents -print | sed -e ‘s;[^/]*/;|—>;g;s;—>|; |;g’ > ~/Desktop/Tree.txt …
“List all files and folders in a certain directory with Terminal” verder lezen
Mac Finder: How to batch unlock numerous files within subfolders/folders/directory
Time for some serious finder mojo: 1. Using Finder, the top level folder of those files that you want to unlock. Switch to List View mode (cmd-2). 2. You should now see a finder pane containing only those files and folders that you want to unlock. 3. Cmd-a to Select All. 4. Open all the …
“Mac Finder: How to batch unlock numerous files within subfolders/folders/directory” verder lezen
Tips I’ve got & found as a new Mac user
On the end of March I stepped into the other world; the one where the people are Mac-users. Since I graduated as a Graphic Designer in ’97 I’ve never been working on a Mac, not that I did not want to, it was to expensive or everybody else worked on Windows or I had to …