Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
内部に数字のみが含まれるtxtファイルがあります。任意の数値にすることができます。bash から読み取って int に変換するにはどうすればよいですか?
私が言ったように、ファイル内の唯一のものは数字であり、それ以外のものはありませんが、それを読み取ると、bash はそれを文字列として取得します。
前もって感謝します!
declareまたはを使用typeset:
declare
typeset
typeset -i variable=$(cat filename)