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;









2


















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$









share|improve this question






















  • 3





    Isn't defaults write missing ? apple.stackexchange.com/questions/102452/…

    – ankii
    Sep 29 at 4:09


















2


















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$









share|improve this question






















  • 3





    Isn't defaults write missing ? apple.stackexchange.com/questions/102452/…

    – ankii
    Sep 29 at 4:09














2













2









2








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$









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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't defaults write missing ? apple.stackexchange.com/questions/102452/…

    – ankii
    Sep 29 at 4:09













  • 3





    Isn't defaults 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











1 Answer
1






active

oldest

votes


















9



















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






share|improve this answer



































    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    9



















    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






    share|improve this answer































      9



















      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






      share|improve this answer





























        9















        9











        9









        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






        share|improve this answer
















        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







        share|improve this answer















        share|improve this answer




        share|improve this answer








        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
















            Popular posts from this blog

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?