[BASH] 파일 읽는 방법 # file.txt Hello, World! Sample text file! 이런식으로 파일이 있다고 가정하면 #!/bin/bash value=`cat file.txt` echo "$value" cat을 통해 간단하게 읽을수 있습니다. 그외 다양한 방법은 아래 링크를 참조합니다 출처 : https://codechacha.com/ko/shell-script-read-file/ linux 2023.04.13
Recoverable fatal error: Object of class OCI-Lob could not be converted to string Recoverable fatal error: Object of class OCI-Lob could not be converted to string in /home/mysop/index.php on line 5 오라클 데이터 파싱중 이런 에러가 나타나면 에러 문구 말대로 CLOB 데이터를 컨버터 해서 가져오면 된다 여러가지 방법이 있지만 function 을 통해 간단하게 변환해 보자 function read_clob($field) { return $field->read($field->size()); } 데이터를 위 function을 통과시켜 사용하면 된다 출처 : https://forum.codeigniter.com/thread-32811.html [SOLVED] Retrieving CLOB data fi.. linux/php 2023.04.13