Develop 썸네일형 리스트형 [Postman] Example of Pre-request Script When I was doing a project to make REST API Client, I had to make access token before request REST API.If the access token were expired, refreshing access token process was very bothersome process..When I using Postman to testing my REST API, I could make this authentication process to automatically with pre-request script.And easily access the authorization token with environment variables.. He.. 더보기 Calculate Date Before one day / After one dayconst tmpDate = new Date();> Mon Dec 24 2018 14:54:16 GMT+0900 (Korean Standard Time) /// Before a DaytmpDate.setDate(tmpDate.getDate() - 1);> Sun Dec 23 2018 14:54:16 GMT+0900 (Korean Standard Time) {} /// After a DaytmpDate.setDate(tmpDate.getDate() + 1);> Mon Dec 24 2018 14:54:16 GMT+0900 (Korean Standard Time) Before two month / After four monthconst tmpDate = n.. 더보기 Get linux history of all users Formal Commandgetent passwd | cut -d : -f 6 | sed 's:$:/.bash_history:' | xargs -d '\n' grep -s -H -e "{{pattern}}" Easy Command for same location of all users home directorygrep -e "{{pattern}}" /home/*/.bash_history 더보기 이전 1 ··· 4 5 6 7 8 9 10 ··· 67 다음