Can't change the screenshot directory because “com.apple.screencapture: command not found”Can I undo changes made via “defaults write”?After reboot system time changed and menu bar items changed positionOSX Screenshot App: Can't change screenshot file formatSuper slow browsing on rMBP until rebootSlow mac when Terminal have been open for some timeHow to make command run in terminal? Command not foundTerminal gives :command not found, when typing too fastReinstall MacOS on a Macbook that doesn't have MacOS anymore?
How can conflict be conducted between nations when warfare is never an option?
Is lens flare shot organically, or added in post-production?
C - random password generator
Why should you have travel insurance?
Producing a more appealing rounded end of line joins
Can I be fired the same day that I hand in my notice?
legal rights of neighbouring property owners
Why is "runway behind you" useless?
How to teach children Santa is not real, while respecting other kids beliefs?
ld linker ignores LD_LIBRARY_PATH
Is my ESTA still valid though I've mislaid it?
Manipulating list values in python
Who's next to me in the queue?
Is my homebrew "Overcast" system balanced?
Infant Mortality: Aluminum Electrolytic Capacitor short circuit failure
Why is JavaScript not compiled to bytecode before sending over the network?
Is there any way to write words the same as TeX/LaTeX logo typography?
Why do we use cross products in physics?
Are there examples of democratic states peacefully changing their constitution without abiding by the rules spelled out in the former constitution?
How could wyverns fight effectively if they can't carry stuff around?
What is this large fan in front of the Space Shuttle during Ground Turnaround?
Merging 4 matrices to one matrix
Twelve Labours - Conclusion
Does Wide Guard protect against Dragon Darts?
Can't change the screenshot directory because “com.apple.screencapture: command not found”
Can I undo changes made via “defaults write”?After reboot system time changed and menu bar items changed positionOSX Screenshot App: Can't change screenshot file formatSuper slow browsing on rMBP until rebootSlow mac when Terminal have been open for some timeHow to make command run in terminal? Command not foundTerminal gives :command not found, when typing too fastReinstall MacOS on a Macbook that doesn't have MacOS anymore?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I used to be able to change the screenshot directory by just changing the location and typing in the specifics to the terminal but now I am getting this code and I have no idea what to do.
I went through everything a month ago to manually erase everything because my Mac was running slow. I think I might have accidentally deleted something I needed. What should I do? My desktop is getting extremely cluttered. I am using a MacBook Pro with macOS Sierra.
MacBook-Pro:~ ChristianJ$
MacBook-Pro:~ ChristianJ$ com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
-bash: com.apple.screencapture: command not found
MacBook-Pro:~ ChristianJ$
macbook-pro terminal screen-capture
add a comment
|
I used to be able to change the screenshot directory by just changing the location and typing in the specifics to the terminal but now I am getting this code and I have no idea what to do.
I went through everything a month ago to manually erase everything because my Mac was running slow. I think I might have accidentally deleted something I needed. What should I do? My desktop is getting extremely cluttered. I am using a MacBook Pro with macOS Sierra.
MacBook-Pro:~ ChristianJ$
MacBook-Pro:~ ChristianJ$ com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
-bash: com.apple.screencapture: command not found
MacBook-Pro:~ ChristianJ$
macbook-pro terminal screen-capture
3
Isn'tdefaults write
missing ? apple.stackexchange.com/questions/102452/…
– ankii
Sep 29 at 4:09
add a comment
|
I used to be able to change the screenshot directory by just changing the location and typing in the specifics to the terminal but now I am getting this code and I have no idea what to do.
I went through everything a month ago to manually erase everything because my Mac was running slow. I think I might have accidentally deleted something I needed. What should I do? My desktop is getting extremely cluttered. I am using a MacBook Pro with macOS Sierra.
MacBook-Pro:~ ChristianJ$
MacBook-Pro:~ ChristianJ$ com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
-bash: com.apple.screencapture: command not found
MacBook-Pro:~ ChristianJ$
macbook-pro terminal screen-capture
I used to be able to change the screenshot directory by just changing the location and typing in the specifics to the terminal but now I am getting this code and I have no idea what to do.
I went through everything a month ago to manually erase everything because my Mac was running slow. I think I might have accidentally deleted something I needed. What should I do? My desktop is getting extremely cluttered. I am using a MacBook Pro with macOS Sierra.
MacBook-Pro:~ ChristianJ$
MacBook-Pro:~ ChristianJ$ com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
-bash: com.apple.screencapture: command not found
MacBook-Pro:~ ChristianJ$
macbook-pro terminal screen-capture
macbook-pro terminal screen-capture
edited Sep 29 at 9:12
grg♦
149k25 gold badges240 silver badges355 bronze badges
149k25 gold badges240 silver badges355 bronze badges
asked Sep 29 at 4:07
oncologist111oncologist111
291 bronze badge
291 bronze badge
3
Isn'tdefaults write
missing ? apple.stackexchange.com/questions/102452/…
– ankii
Sep 29 at 4:09
add a comment
|
3
Isn'tdefaults write
missing ? apple.stackexchange.com/questions/102452/…
– ankii
Sep 29 at 4:09
3
3
Isn't
defaults write
missing ? apple.stackexchange.com/questions/102452/…– ankii
Sep 29 at 4:09
Isn't
defaults write
missing ? apple.stackexchange.com/questions/102452/…– ankii
Sep 29 at 4:09
add a comment
|
1 Answer
1
active
oldest
votes
The error message is telling you that the shell (bash) is expecting the first expression on the command line to be a program, script, or shell built-in. com.apple.screencapture
is none of those.
The command you are missing is defaults
, with a sub-command of write
, like so:
defaults write com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
add a comment
|
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The error message is telling you that the shell (bash) is expecting the first expression on the command line to be a program, script, or shell built-in. com.apple.screencapture
is none of those.
The command you are missing is defaults
, with a sub-command of write
, like so:
defaults write com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
add a comment
|
The error message is telling you that the shell (bash) is expecting the first expression on the command line to be a program, script, or shell built-in. com.apple.screencapture
is none of those.
The command you are missing is defaults
, with a sub-command of write
, like so:
defaults write com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
add a comment
|
The error message is telling you that the shell (bash) is expecting the first expression on the command line to be a program, script, or shell built-in. com.apple.screencapture
is none of those.
The command you are missing is defaults
, with a sub-command of write
, like so:
defaults write com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
The error message is telling you that the shell (bash) is expecting the first expression on the command line to be a program, script, or shell built-in. com.apple.screencapture
is none of those.
The command you are missing is defaults
, with a sub-command of write
, like so:
defaults write com.apple.screencapture location /Users/mac/Documents/Zoology/edited screen shots
edited Sep 29 at 9:24
fd0
7,2951 gold badge16 silver badges33 bronze badges
7,2951 gold badge16 silver badges33 bronze badges
answered Sep 29 at 4:17
scottbbscottbb
1934 bronze badges
1934 bronze badges
add a comment
|
add a comment
|
3
Isn't
defaults write
missing ? apple.stackexchange.com/questions/102452/…– ankii
Sep 29 at 4:09