본문 바로가기

파일

Force file download Force download with axios on vue.js fileDownload = (url, method, req, fileName) => { const axiosConfig = { method: method, url: url, responseType: 'blob', params: req, }; try { const response = await axios(axiosConfig); const url = window.URL.createObjectURL(new Blob([response.data])); const anchor = document.createElement('a'); anchor.href = url; anchor.setAttribute('download', fileName); docum.. 더보기
특정 파일 검색해서 해당 파일내에 특정 문구 추가하기 기본적으로 파일내에 특정 문구를 추가하려면 아래 명령을 사용하면된다. ]$ sed -i '[넣어줄 줄위치]s/^/[추가해줄 문장]\n/' [추가하려는 파일]]$ sed -i '2s/^/SET autocommit=0;\n\n/' ./test.sql \; # 여러 개를 추가하려면(5개가 추가됨)]$ sed -i '1,5s/^/-- test line\n\n/' ./test.sql \; 덤프뜬 데이터 양이 많아서 split으로 나눠서 일괄로 등록해줄 필요가 있었음.그래서 split으로 나눈후 해당 내용에 SET autocommit=0을 모든 파일에 추가해줘야함. ]$ split -l 500 all_log.sql ./log_split/log-]$ find ./ -name 'log-*' -exec sed -i '1.. 더보기
php_value 값 설정하기 apache 설정을 바꾸지 않더라도 .htaccess 파일을 사용한다면 여기에 설정을 넣어줄 수 있음. upload_max_filesize 이러한 변수들은 ini_set 함수를 사용해서 설정을 해줄수가 없음. http://php.net/manual/en/ini.list.php - ini 설정값들http://php.net/manual/en/configuration.changes.modes.php - 설정값 변경해줄 위치들 upload_max_filesize 값의 경우 PHP_INI_PERDIR 에 속하기 때문에"Entry can be set in php.ini, .htaccess, httpd.conf or .user.ini (since PHP 5.3)"php.ini .htaccess httpd.conf ... 더보기