Why is .bash_history periodically wiped?Why does iterm2 close new sessions immediately?Why does Terminal ignore capital “B”?Why does shasum generate non-standard hashes?In iTerm, why is a command shell's command not picking up things on my $PATH?Odd bug in iTerm — Why is my name wrong?Why is there a left bracket before my bash prompt?I deleted .bash_history, now history isn't saved anymore (although I re-created it)Why ALT+. (last parameter) does not work in Bash?iTerm spits out text every time I start a new session - why, and how to stop it?How are command line commands stored in .bash_history?

Is there reliable evidence that depleted uranium from the 1999 NATO bombing is causing cancer in Serbia?

How can I add two boxes in minipages side by side?

How can I deal with extreme temperatures in a hotel room?

Skipping over failed imports until they are needed (if ever)

Computing the sum of an infinite series as a variant of a geometric series

Picking balls from urns.

How can my story take place on Earth without referring to our existing cities and countries?

I'm reinstalling my Linux desktop, how do I keep SSH logins working?

Can someone break into a Leomund's Tiny Hut via the Ethereal Plane?

Why is copy constructor called instead of move constructor when returning?

Meaning of じゃないんじゃない?

The Confused Alien

What's the safest way to inform a new user of their password on an invite-only website?

What exactly did Ant-Man see that made him say that their plan worked?

In Soul Music, where do the corn fields behind Death garden come from?

How did Lefschetz do mathematics without hands?

Why is Silver Fang rated as S-class Rank 3 hero?

Pairwise Scatter Plots with Histograms and Correlations

Using Raspberry Pi to flash its own SD card

How is this practical and very old scene shot?

Why do changes to /etc/hosts take effect immediately?

If two black hole event horizons overlap (touch) can they ever separate again?

Why do we use a cylinder as a Gaussian surface for infinitely long charged wire?

Sharing referee/AE report online to point out a grievous error in refereeing



Why is .bash_history periodically wiped?


Why does iterm2 close new sessions immediately?Why does Terminal ignore capital “B”?Why does shasum generate non-standard hashes?In iTerm, why is a command shell's command not picking up things on my $PATH?Odd bug in iTerm — Why is my name wrong?Why is there a left bracket before my bash prompt?I deleted .bash_history, now history isn't saved anymore (although I re-created it)Why ALT+. (last parameter) does not work in Bash?iTerm spits out text every time I start a new session - why, and how to stop it?How are command line commands stored in .bash_history?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















This is the second time it's happened.
I just tried grep-ing some historical commands and came up empty. a look at my bash history shows that it's practically empty. Like it's been wiped clean.
I use iTerm2 and on MacOS 10.13.6.
I see there's a .bash_sessions directory with some sessions saved but I guess this is probably an iTerm2 thing to preserve sessions for some reason or another.










share|improve this question






















  • unix.stackexchange.com/questions/163371/…

    – JBis
    Mar 25 at 11:32

















4















This is the second time it's happened.
I just tried grep-ing some historical commands and came up empty. a look at my bash history shows that it's practically empty. Like it's been wiped clean.
I use iTerm2 and on MacOS 10.13.6.
I see there's a .bash_sessions directory with some sessions saved but I guess this is probably an iTerm2 thing to preserve sessions for some reason or another.










share|improve this question






















  • unix.stackexchange.com/questions/163371/…

    – JBis
    Mar 25 at 11:32













4












4








4


1






This is the second time it's happened.
I just tried grep-ing some historical commands and came up empty. a look at my bash history shows that it's practically empty. Like it's been wiped clean.
I use iTerm2 and on MacOS 10.13.6.
I see there's a .bash_sessions directory with some sessions saved but I guess this is probably an iTerm2 thing to preserve sessions for some reason or another.










share|improve this question














This is the second time it's happened.
I just tried grep-ing some historical commands and came up empty. a look at my bash history shows that it's practically empty. Like it's been wiped clean.
I use iTerm2 and on MacOS 10.13.6.
I see there's a .bash_sessions directory with some sessions saved but I guess this is probably an iTerm2 thing to preserve sessions for some reason or another.







terminal bash iterm






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 10:33









Dark Star1Dark Star1

2543 silver badges11 bronze badges




2543 silver badges11 bronze badges












  • unix.stackexchange.com/questions/163371/…

    – JBis
    Mar 25 at 11:32

















  • unix.stackexchange.com/questions/163371/…

    – JBis
    Mar 25 at 11:32
















unix.stackexchange.com/questions/163371/…

– JBis
Mar 25 at 11:32





unix.stackexchange.com/questions/163371/…

– JBis
Mar 25 at 11:32










1 Answer
1






active

oldest

votes


















7














There can be multiple reasons as to why this happens - I'll try to outline how it works below.



However, I can say that the other answer you have received here is not correct. HISTFILESIZE and HISTSIZE will not cause your history to "sometimes" being entirely wiped out or almost wiped out. Only by setting them to 0 you would get nothing in the files - but it would happen every time, and not by chance. In addition, what you describe with the file being "almost wiped out" cannot happen due to it being set to 0.



You're actually on to the right thing yourself by mentioning .bash_sessions. That is not an iTerm2 "thing", but rather how it works by default on a standard macOS install. Apple has built-in per-session history on top of a regular bash install.



This means that if you have multiple terminals running (for example multiple tabs), each of those will have a seperate history tracked in .bash_sessions. If you reboot your Mac and the terminal windows are restored, you'll find that each still have their own history - and only their own history.



When you close down a bash session, Apple's system will merge the history for that specific session into the global .bash_history file. Then when you open a new terminal (and thus bash session), it will start with that merged history containing history from potentially multiple sessions.



This is all handled by the /etc/bashrc_Apple_Terminal script.



Now that you know how it works, here are some possible causes for what you're seeing:



  • You may accidentially have removed the history yourself (history -c)


  • Your Mac could be infected with malware and/or hacked, and someone else is removing your .bash_history file


  • You have software installed that periodically empties/removes .bash_history


These reasons are not that likely, I would say.



Now there's one last possible cause:



There's a known race-condition in handling the bash histories. If you close down multiple bash sessions at once (for example closing down a terminal window with multiple tabs), you might loose part of or the whole history.



This happens if the computer is "slow" while reading/writing parts of the history. Basically how it works is that your currently history is read, the file is deleted/moved away, and a new file is created, where all the history lines are written to. If this process is running multiple times at the same time, you might see that one process removes the old history, the other process read an empty history, then the first process writes out the whole history again, and then the other process deletes that and writes out a very short history containing only few recent lines - as it didn't read anything in. This bug shows up as exactly what you have described.



The fix is simply to close one bash session at a time to let the system have time to write out everything correctly.






share|improve this answer























  • Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

    – Dark Star1
    Mar 25 at 14:18











  • Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

    – QuickishFM
    Mar 25 at 14:31











  • This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

    – Dark Star1
    Mar 25 at 15:16











  • As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

    – jpa
    Mar 25 at 19:18











  • The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

    – jksoegaard
    Mar 25 at 19:42




















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









7














There can be multiple reasons as to why this happens - I'll try to outline how it works below.



However, I can say that the other answer you have received here is not correct. HISTFILESIZE and HISTSIZE will not cause your history to "sometimes" being entirely wiped out or almost wiped out. Only by setting them to 0 you would get nothing in the files - but it would happen every time, and not by chance. In addition, what you describe with the file being "almost wiped out" cannot happen due to it being set to 0.



You're actually on to the right thing yourself by mentioning .bash_sessions. That is not an iTerm2 "thing", but rather how it works by default on a standard macOS install. Apple has built-in per-session history on top of a regular bash install.



This means that if you have multiple terminals running (for example multiple tabs), each of those will have a seperate history tracked in .bash_sessions. If you reboot your Mac and the terminal windows are restored, you'll find that each still have their own history - and only their own history.



When you close down a bash session, Apple's system will merge the history for that specific session into the global .bash_history file. Then when you open a new terminal (and thus bash session), it will start with that merged history containing history from potentially multiple sessions.



This is all handled by the /etc/bashrc_Apple_Terminal script.



Now that you know how it works, here are some possible causes for what you're seeing:



  • You may accidentially have removed the history yourself (history -c)


  • Your Mac could be infected with malware and/or hacked, and someone else is removing your .bash_history file


  • You have software installed that periodically empties/removes .bash_history


These reasons are not that likely, I would say.



Now there's one last possible cause:



There's a known race-condition in handling the bash histories. If you close down multiple bash sessions at once (for example closing down a terminal window with multiple tabs), you might loose part of or the whole history.



This happens if the computer is "slow" while reading/writing parts of the history. Basically how it works is that your currently history is read, the file is deleted/moved away, and a new file is created, where all the history lines are written to. If this process is running multiple times at the same time, you might see that one process removes the old history, the other process read an empty history, then the first process writes out the whole history again, and then the other process deletes that and writes out a very short history containing only few recent lines - as it didn't read anything in. This bug shows up as exactly what you have described.



The fix is simply to close one bash session at a time to let the system have time to write out everything correctly.






share|improve this answer























  • Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

    – Dark Star1
    Mar 25 at 14:18











  • Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

    – QuickishFM
    Mar 25 at 14:31











  • This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

    – Dark Star1
    Mar 25 at 15:16











  • As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

    – jpa
    Mar 25 at 19:18











  • The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

    – jksoegaard
    Mar 25 at 19:42















7














There can be multiple reasons as to why this happens - I'll try to outline how it works below.



However, I can say that the other answer you have received here is not correct. HISTFILESIZE and HISTSIZE will not cause your history to "sometimes" being entirely wiped out or almost wiped out. Only by setting them to 0 you would get nothing in the files - but it would happen every time, and not by chance. In addition, what you describe with the file being "almost wiped out" cannot happen due to it being set to 0.



You're actually on to the right thing yourself by mentioning .bash_sessions. That is not an iTerm2 "thing", but rather how it works by default on a standard macOS install. Apple has built-in per-session history on top of a regular bash install.



This means that if you have multiple terminals running (for example multiple tabs), each of those will have a seperate history tracked in .bash_sessions. If you reboot your Mac and the terminal windows are restored, you'll find that each still have their own history - and only their own history.



When you close down a bash session, Apple's system will merge the history for that specific session into the global .bash_history file. Then when you open a new terminal (and thus bash session), it will start with that merged history containing history from potentially multiple sessions.



This is all handled by the /etc/bashrc_Apple_Terminal script.



Now that you know how it works, here are some possible causes for what you're seeing:



  • You may accidentially have removed the history yourself (history -c)


  • Your Mac could be infected with malware and/or hacked, and someone else is removing your .bash_history file


  • You have software installed that periodically empties/removes .bash_history


These reasons are not that likely, I would say.



Now there's one last possible cause:



There's a known race-condition in handling the bash histories. If you close down multiple bash sessions at once (for example closing down a terminal window with multiple tabs), you might loose part of or the whole history.



This happens if the computer is "slow" while reading/writing parts of the history. Basically how it works is that your currently history is read, the file is deleted/moved away, and a new file is created, where all the history lines are written to. If this process is running multiple times at the same time, you might see that one process removes the old history, the other process read an empty history, then the first process writes out the whole history again, and then the other process deletes that and writes out a very short history containing only few recent lines - as it didn't read anything in. This bug shows up as exactly what you have described.



The fix is simply to close one bash session at a time to let the system have time to write out everything correctly.






share|improve this answer























  • Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

    – Dark Star1
    Mar 25 at 14:18











  • Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

    – QuickishFM
    Mar 25 at 14:31











  • This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

    – Dark Star1
    Mar 25 at 15:16











  • As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

    – jpa
    Mar 25 at 19:18











  • The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

    – jksoegaard
    Mar 25 at 19:42













7












7








7







There can be multiple reasons as to why this happens - I'll try to outline how it works below.



However, I can say that the other answer you have received here is not correct. HISTFILESIZE and HISTSIZE will not cause your history to "sometimes" being entirely wiped out or almost wiped out. Only by setting them to 0 you would get nothing in the files - but it would happen every time, and not by chance. In addition, what you describe with the file being "almost wiped out" cannot happen due to it being set to 0.



You're actually on to the right thing yourself by mentioning .bash_sessions. That is not an iTerm2 "thing", but rather how it works by default on a standard macOS install. Apple has built-in per-session history on top of a regular bash install.



This means that if you have multiple terminals running (for example multiple tabs), each of those will have a seperate history tracked in .bash_sessions. If you reboot your Mac and the terminal windows are restored, you'll find that each still have their own history - and only their own history.



When you close down a bash session, Apple's system will merge the history for that specific session into the global .bash_history file. Then when you open a new terminal (and thus bash session), it will start with that merged history containing history from potentially multiple sessions.



This is all handled by the /etc/bashrc_Apple_Terminal script.



Now that you know how it works, here are some possible causes for what you're seeing:



  • You may accidentially have removed the history yourself (history -c)


  • Your Mac could be infected with malware and/or hacked, and someone else is removing your .bash_history file


  • You have software installed that periodically empties/removes .bash_history


These reasons are not that likely, I would say.



Now there's one last possible cause:



There's a known race-condition in handling the bash histories. If you close down multiple bash sessions at once (for example closing down a terminal window with multiple tabs), you might loose part of or the whole history.



This happens if the computer is "slow" while reading/writing parts of the history. Basically how it works is that your currently history is read, the file is deleted/moved away, and a new file is created, where all the history lines are written to. If this process is running multiple times at the same time, you might see that one process removes the old history, the other process read an empty history, then the first process writes out the whole history again, and then the other process deletes that and writes out a very short history containing only few recent lines - as it didn't read anything in. This bug shows up as exactly what you have described.



The fix is simply to close one bash session at a time to let the system have time to write out everything correctly.






share|improve this answer













There can be multiple reasons as to why this happens - I'll try to outline how it works below.



However, I can say that the other answer you have received here is not correct. HISTFILESIZE and HISTSIZE will not cause your history to "sometimes" being entirely wiped out or almost wiped out. Only by setting them to 0 you would get nothing in the files - but it would happen every time, and not by chance. In addition, what you describe with the file being "almost wiped out" cannot happen due to it being set to 0.



You're actually on to the right thing yourself by mentioning .bash_sessions. That is not an iTerm2 "thing", but rather how it works by default on a standard macOS install. Apple has built-in per-session history on top of a regular bash install.



This means that if you have multiple terminals running (for example multiple tabs), each of those will have a seperate history tracked in .bash_sessions. If you reboot your Mac and the terminal windows are restored, you'll find that each still have their own history - and only their own history.



When you close down a bash session, Apple's system will merge the history for that specific session into the global .bash_history file. Then when you open a new terminal (and thus bash session), it will start with that merged history containing history from potentially multiple sessions.



This is all handled by the /etc/bashrc_Apple_Terminal script.



Now that you know how it works, here are some possible causes for what you're seeing:



  • You may accidentially have removed the history yourself (history -c)


  • Your Mac could be infected with malware and/or hacked, and someone else is removing your .bash_history file


  • You have software installed that periodically empties/removes .bash_history


These reasons are not that likely, I would say.



Now there's one last possible cause:



There's a known race-condition in handling the bash histories. If you close down multiple bash sessions at once (for example closing down a terminal window with multiple tabs), you might loose part of or the whole history.



This happens if the computer is "slow" while reading/writing parts of the history. Basically how it works is that your currently history is read, the file is deleted/moved away, and a new file is created, where all the history lines are written to. If this process is running multiple times at the same time, you might see that one process removes the old history, the other process read an empty history, then the first process writes out the whole history again, and then the other process deletes that and writes out a very short history containing only few recent lines - as it didn't read anything in. This bug shows up as exactly what you have described.



The fix is simply to close one bash session at a time to let the system have time to write out everything correctly.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 25 at 13:14









jksoegaardjksoegaard

23.2k1 gold badge29 silver badges55 bronze badges




23.2k1 gold badge29 silver badges55 bronze badges












  • Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

    – Dark Star1
    Mar 25 at 14:18











  • Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

    – QuickishFM
    Mar 25 at 14:31











  • This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

    – Dark Star1
    Mar 25 at 15:16











  • As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

    – jpa
    Mar 25 at 19:18











  • The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

    – jksoegaard
    Mar 25 at 19:42

















  • Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

    – Dark Star1
    Mar 25 at 14:18











  • Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

    – QuickishFM
    Mar 25 at 14:31











  • This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

    – Dark Star1
    Mar 25 at 15:16











  • As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

    – jpa
    Mar 25 at 19:18











  • The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

    – jksoegaard
    Mar 25 at 19:42
















Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

– Dark Star1
Mar 25 at 14:18





Thanks for your explanation I will see if I can replicate this given your answer and get back to you. I am aware that it may not necessarily happen on the first try, but I'd like to be sure it is replicable.

– Dark Star1
Mar 25 at 14:18













Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

– QuickishFM
Mar 25 at 14:31





Also just want to add to the malware part - a common OS X RAT known as Eggshell has a macOS payload that actually executes history -wc as part of its code after the main payload, such that all traces of the payload injection command are wiped. Not saying its necessary Eggshell but it could be something common if someone wanted to hide their traces...

– QuickishFM
Mar 25 at 14:31













This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

– Dark Star1
Mar 25 at 15:16





This has only happened to me twice and I doubt it is that malware but thanks for the info. Ill look out for it just in case

– Dark Star1
Mar 25 at 15:16













As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

– jpa
Mar 25 at 19:18





As a workaround, I have this in my bashrc: export PROMPT_COMMAND='echo $(date +%Y-%m-%dT%H:%M:%S) $(pwd): "$(history 1 | head -c 512 | sed "s/^[ ]*[0-9]+[ ]*//" )" >> ~/.bash_history_full; echo -ne "33]0;$PWD##*/07"' which will store each command after it is executed.

– jpa
Mar 25 at 19:18













The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

– jksoegaard
Mar 25 at 19:42





The disadvantage there is thought that it won't seperate sessions for you - so it will be hard to make sense of stuff afterwards if you have many sessions (for example some local and some remote).

– jksoegaard
Mar 25 at 19:42



Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해